

window.addEvent("domready", function() {
	$$("#galleryThumbs a").each(function(item) {
		item.addEvent("click", function(e) {
			new Event(e).stop();
			$$("#contentLeft img")[0].setAttribute("src", this.getAttribute("href"));
		});
	});
});