/* 
 * CPH West
 * 
 * Copyright 2010
 * 
 * 
 * 
 * 
 */
(function () {

    /*
    * Height fix, because height:100% is not dynamic
    */
    var maxHeightParent = '.mHeightThis';
    var maxHeightChild = '.maxThisHeight';
    function fitTheHeight(myheight) {
        var height = myheight.height();
        myheight.find(maxHeightChild).css({ 'height': height + 'px' });
    }
    $.each($(maxHeightParent), function () {
        fitTheHeight($(this));
    });

    /*
    * Height of content should be variable.
    */
    $.each(maxHeightChild + ':has(ms-SPZone)', function () {
        $(this).css({ 'height': 'auto' });
    });

    /*
    * Remove the class for hor-menu in sp
    */
    var MenuHorClass = 'menu-horizontal';
    $('.' + MenuHorClass).removeClass(MenuHorClass);


    /* Table width=100% */
    $('table').attr('width', '');


    // jquery.fancybox -> biograf
    /*
        There is no Biograf integreted yet.
    */
    /*
    $('.cBiografLink').fancybox({
    'titlePosition'	: 'inside',
    'padding': 0,
    'autoScale': false,
    'transitionIn': 'none',
    'transitionOut': 'none'
        
    });
    */
    /*
    * Toggle admin top
    
    $adminTop = $('#s4-ribbonrow');
    $cookieAdmin = "";
    function toggleAdmin() {
    $adminTop.toggle();
    }
    if ($cookieAdmin == "") {
    $adminTop.hide();
    }
    $(window).keypress(function(event) {
    if ((event.which == 115 && event.ctrlKey)){
    alert("Ctrl+S pressed");
    event.preventDefault();
    }
    }
    */


})()



 
 
 

