$(document).ready(function() {
	$("#slideshow a > img").each(function(index, element) {
		var href = $(element).parent().attr("href");
		$(element).unwrap();
		$(element).click(function() {
			window.location = href;
		});
		$(element).hover(function() {
			$(this).css("cursor", "pointer");
		});
	});
});

