(function($) {
	$(document).ready(function(){
		$('.menu div div').mouseover(function(e){
			$(this).find('.submenu').show().mouseover(function(){
				$(this).show();
			}).mouseout(function(){
				$(this).hide();
			});
		}).mouseout(function(){
			$(this).find('.submenu').hide();
		});
	});
}(jQuery))
