// JavaScript Document

window.addEvent("domready", function(){
	$$("a.thumblink").each(function(element){
		element.onclick=function(e){
			e=new Event(e).stop();
			$("mainimage").src=this.href;
		}
	});
});