$(document).ready(function(){
	$("li.dropdown a").mouseover(function() {
		
		$(this).parent().find(".foldout").removeClass('hide').addClass('show');
		
		$(this).parent().hover(function() {
			}, function(){
		$(this).parent().find(".foldout").removeClass('show').addClass('hide');
		});
	});
});

