/*$(document).ready(function(){

		//Partial Sliding (Only show some of background)
		$('.boxgrid.peek').hover(function(){
			$(".cover", this).stop().animate({top:'60px'},{queue:false,duration:160});
		}, function() {
			$(".cover", this).stop().animate({top:'0px'},{queue:false,duration:160});
		});
		
	});*/
	jQuery(function()
	{	jQuery("ul#menu>li").hoverIntent(
			function()
			{	jQuery(this).children('.menu_sub').stop(true, true).slideDown('slow');
			},
			function()
			{	jQuery(this).children('.menu_sub').stop(true, true).slideUp('slow');
			}
		);
	});
	

