$(document).ready(function(){
	$("#slideshow").slideshow({});
	
	$("#shop > a > img:first").hover(function(){
		$(this).attr("src", "images/checkout.png");
	}, function(){
		$(this).attr("src", "images/checkout-disabled.png");
	});
});
