// JavaScript Document

var wrapperHeight;

var wresize = function(){
    var h = Math.max((document.body.clientHeight - 440), 120);
    
    $('menu').setStyle('margin-top', -180);
    $('contentHome').setStyle('margin-top', h);
    $('content100').setStyle('height', document.body.clientHeight -55);
    
};






window.addEvent('resize', function(){
    wresize();
});
window.addEvent('domready', function(){
    wresize();
});




