$(function(){
	$('.dropMenuBox').hover(function(){
		$(this).children('table').show();
	},function(){
		$(this).children('table').hide();
	});
});
