
jQuery(document).ready(function () {
    var maxHeight_w = jQuery(window).height();
		var maxHeight_b = jQuery(".block").height()+228;		
		var maxHeight = Math.max(maxHeight_w,maxHeight_b)-228  ;				
		
		jQuery('.page').css('height',maxHeight+'px');	
		
		var maxHeight_sec = Math.max(maxHeight,1590)-228  ;

		$('.page_sec').css('min-height: 1226px; height: auto !important; height: 1226px;');

		jQuery('.menu li:first-child').css('padding-left','55px');
		
		
		
		
		jQuery(".num2").click(function () { 
			jQuery('.menu li div.submenu').css('display','block');																		 

      return false;
    });
    jQuery(".menu li").hover(function () {
      jQuery(this).addClass("hilite");
    }, function () {
      jQuery(this).removeClass("hilite");
    });
		
});

