$(document).ready(function(){
	var element = null;
	
	$("a[id^='link_']").hover(
	  function(el) {
	  	var id = $(this).attr("id");
	  	var aTmp = id.split("_");
	  	element = "#"+aTmp[1]+"_img";
	  	
	  	$(element).css('display', 'block');	  
	  },
	  function() {
	  	$(element).css('display', 'none');
	  }	
	);
});
