$(function(){
	$(".nav_select").hover(function(){
		$(this).find(".nav_arrow").hide();
	},function(){
		$(this).find(".nav_arrow").show();
	});
});
