/*jQuery(function() {
	jQuery('.nav > li').mouseover(function() {
	 var firstchild = jQuery(this).find('ul:first');
	 firstchild.css('overflow', 'visible').show();
	 
	 jQuery('.nav > li > ul > li').mouseover(function() {
		var secondchild = jQuery(this).find('ul'); 
		secondchild.show();
	 });
	 
	 jQuery(this).mouseout(function() {
		jQuery(this).find('ul').hide();	 
	 });
	 
	});
});*/
