$(document).ready(function(){

$('a.link-as-img').each(function(){
	var $this = $(this);
	var $img = $this.children('img');
	
	$this.css('display', 'block');
	
	var imgSrc = $img.attr('src');
	var hoverSrc = imgSrc.replace(/(\.[^\.]+)$/, '.hover$1');
	$this.css('background', 'url('+hoverSrc+') top left no-repeat');
	
	
	var animateSpeed = 'normal';
	$img.hover(
		function() {
			$(this).fadeTo(animateSpeed, 0);
		},
		function() {
			$(this).fadeTo(animateSpeed, 1);
		}
	);
});

});
