$(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;
	},
	function(){
		var showPath = "bilder/show.gif";
		var showAlt = "";
		$("#show").attr({ src: showPath, alt: showAlt });
		return false;
	});
});
