window.addEvent("domready", function(){

	$$(".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(){



});