$(document).ready(function(){
	$('.nav_item').hover(function() {
		$(this).children('div').show();
	}, function () {
		$(this).children('div').hide();
	});
});

