window.addEvent("domready", function(){
	
	new SmoothScroll({"links": $$(".scroll")});

	$$(".volatile").each(function(el){
		$(el).addEvent("focus", function(){
			if(this.getValue() == this.getProperty("title")) {
				this.value = "";
			}
		});
	});
	
	if ($("productmainimg")) {
		
		$$(".productsublink").each(function(el){
			
			el.addEvent("click", function(e){
				
				new Event(e).stop();
				$("productmainimg").setProperty("src", el.getProperty("href"));			
			
			});
			
		});
	
	}

});

