$(document).ready(function(){

	$(".thumbs a").hover(function(){
	
		var showPath = ($(this).attr("href")).replace("stor","lite");
		var showAlt = $(this).attr("title");
		
		$("#show").attr({ src: showPath, alt: showAlt });
		return false;
	});
	
});