
jQuery(function(){
	jQuery('#login-wrapper').css('width', jQuery('body').width());
	jQuery(window).resize(function() {
		jQuery('#login-wrapper').css('width', jQuery('body').width());
	});
	jQuery('.submenu').each(function() {
    	jQuery(this).css('width', jQuery(this).parent().width());
	});
	jQuery('#navigation').find('li').mouseenter(function(){
		jQuery(this).stop().find('ul').show();
	}).mouseleave(function(){
		jQuery(this).stop().find('ul').hide();
	});
	var minHeight = 388 + jQuery('#login-wrapper').height() - jQuery('#navigation').innerHeight();
	if (typeof document.body.style.maxHeight === "undefined") {//if IE 6
		jQuery('.main-content').css('height', minHeight);
	} else {
		jQuery('.main-content').css('min-height', minHeight);
	}
});
