jQuery(document).ready( function($) {
	$("ul.listdrop ul").addClass("jshide");
	$('ul.listdrop li').hoverIntent(function() {
		$(this).addClass('hover');
		//$(this).children("ul").slideDown();
		$(this).children("ul").show();
	}, function() {
		$(this).removeClass('hover');
		//$(this).children("ul").slideUp();
		$(this).children("ul").hide();
	});
});