$(function(){
	$('.box_pub img.ban_pub').hover(
		function(){
			$('#'+$(this).attr('id')+'_2').show();
			$('#'+$(this).attr('id')+'_2').hover(
				function(){
					$(this).show();
				},		
				function(){
					$(this).hide();
				}		
			);			
		}		
	);
});
