jQuery(document).ready(function(){
		
		jQuery(".shownote img").hover(
		      function (event) {
			    event.preventDefault();
		      	window.showtit = jQuery(this).closest("div").prev("div").find("a").html();
		        jQuery(this).closest("div").prev("div").find("a").html("Blog Notes");
		      }, 
		      function (event) {
		      	event.preventDefault();
		        jQuery(this).closest("div").prev("div").find("a").html(window.showtit);
		      }
		    );
	    
	    

  	 });