window.addEvent("domready", function(){
	//var links = $$("a");
	new SmoothScroll();


	$$(".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");
	});
	






















});

window.addEvent("load", function(){



});