/**
 * Created by JetBrains PhpStorm.
 *
 * Company: dmr solutions gmbh, http://www.dmr-solutions.com
 * Author:  Christian Nielebock (cn), <cn@dmr-solutions.com>
 *
 * Date: 05.12.11
 * Time: 15:46
 */

$(document).ready( function() {
   $('.main-content-bg,.main-content,.content').css('overflow', 'hidden');

   $('.menu-layer-bg').css('opacity', 0.7 );
   $('.main-content-bg').css( 'opacity', 0.6 );

   $('.content').height( $(window).height() - 270 );

   $('#temp').html( $('.content').html() );
   $('body').height( $('#temp').height() + $(window).height() );
   $('#temp').html('');

   $(window).bind('scroll', function() {
        $('.content').scrollTop( $(window).scrollTop() );
   });

   $(window).bind('resize', function() {
       $('.content').height( $(window).height() - 270 );

       $('#temp').html( $('.content').html() );
       $('body').height( $('#temp').height() + $(window).height() );
       $('#temp').html('');
   });
});


