jQuery(window).bind("resize", function() {
	resiz();
});

jQuery(document).ready(function() {
	// alert("ARGHHHH");
	
	jQuery("#menu-main .menu-item").click(
	   	function( e )
	   	{
	   		// alert("helo");
	        jQuery("> ul", this).toggle();
	       	// e.stopPropagation();
	   	}
	);
	
	resiz();
	
		
		
});

function resiz(){
	// alert("riz");
		var v1 =  jQuery(window).height();
		
		/*v1 = v1 - 110;*/
		
		v1 = v1 - 250;
		
		v3 = v1 - 300;
		
		jQuery('#main').css({
			"height": + "590px",
			"overflow":"auto"
		});
		
	// alert("end riz");
}
