window.addEvent("domready", function(){
	
	new SmoothScroll({"links": $$(".scroll")});
	new AlphaPng();

	$$(".volatile").each(function(el){
		$(el).addEvent("focus", function(){
			if(this.getValue() == this.getProperty("title")) {
				this.value = "";
			}
		});
	});

	$$("a[rel*='external']").each(function(a){ 
		$(a).setProperty("target", "_blank");
	});
	

	
	multibox = new MultiBox('mb', {
		showControls:false,
		useOverlay:true,
		overlayColor: "#ffffff"
	});	

});
