$(document).ready(function() {
  /*$(".pro_linedrop > ul > li").hoverIntent(function() {
		//$(".sub",this).delay(500).fadeIn();
		$(".sub",this).css('display','block');
		//$(this).children(".sub").css('display','block');
	},
	function() {
		//$(".sub",this).fadeOut();
		$(".sub",this).css('display','none');
	});*/
	
	var config = {
		over: show,
		timeout: 500,
		out: hide
	};
	
	$(".pro_linedrop > ul > li").hoverIntent(config);
	
	function show() {
		$(".sub",this).stop(true, true).slideDown();
		//$(".sub",this).css('display','block');
	}
	function hide() {
		$(".sub",this).stop(true, true).slideUp();
		//$(".sub",this).css('display','none');
	}
});
