$(document).ready(function(){

	$(".gal_item").hover(
		function(){ //over
			var logo = $(this).attr("id");
//			alert(id);
			$("#no_logo").hide();
			$("#logo" + logo ).show();
			
		},
		function(){ //out
			$("#no_logo").show();
			$(".persons_logo").hide();
		}
	);

});
