jQuery(function() {
	jQuery('.nav').hover(function() {
	}, function() {
		jQuery('.nav > li ul').hide();
	}).children('li').hover(function() {
		jQuery('.nav > li ul').hide();
		jQuery(this).children('ul').css({ 'display':'none', 'left':'0' }).show();
	}, function() {
	});
});