
$(document).ready(function($){
	$('.entry h2 a').hover(
		function(){
			$(this).append($('<span><img src="/img_common/hover.png" alt="" width="238" height="135" /></span>'));
			$(this).find("span").css("display","block")
			                    .css("position","absolute")
			                    .css("top","0px")
			                    .css("left","0px")
			                    .hide()
			                    .fadeIn(300);
			$(this).find("img:last").pngfix();
		},
		function(){
			$(this).find("span").remove();
			//$(this).find("span").fadeOut(200);
		}
	);
});



