$('document').ready(function() {
	$(".thumbnail img").wrap('<a href="#"></a>');
	$(".thumbnail a").click(function() {
		var c = $(this).parent().attr("id").replace("thumbnail", "");
		var a = $(".active").attr("id").replace("image", "");
		if (a == c) return false;
		var show = "#image" + c;
		var hide = "#image" + a;
		$(hide).slideToggle().addClass('hide').removeClass('active');
		$(show).slideToggle().removeClass('hide').addClass('active');
		return false;
	});
});