<!--
/**
 * K-onstruct CMS
 * Copyright (C) 2008-2011 Kevin Kis
 *
 * Formerly known as CECMS Content Management System
 *
 * PHP version 5
 * @copyright  2008-2011 Kevin Kis
 * @author     Kevin Kis <http://www.k-kombinat.de>
 *
 */

/**
 * Load on ready state
 */
$(function() {
   Shadowbox.init();
});

function fadeinbyid(id, timeout) {
    $(id).fadeIn(timeout);
}

function open_image (adress) {
  emwindow = window.open(adress, "image", "width=400,height=300,scrollbars=yes,toolbar=no,resizable=yes,menubar=no");
  emwindow.focus();
}

function open_pop (adress) {
  emwindow = window.open(adress, "image", "width=800,height=800,scrollbars=yes,toolbar=no,resizable=yes,menubar=no");
  emwindow.focus();
}

function setPageContentHeight() {
    
    var height = $(window).height()-200;
    $('#PageContent').css('height', height) ;
}
-->
