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");
	});
	
/* add stuff between here */
/*
	var flash = new FlashObject("FLASH_SRC", "REPLACEMENT_ID_NAME", "WIDTH", "HEIGHT", "FLASH_VERSION", "BGCOLOR");
	flash.addParam("menu","false");
	flash.addParam("quality","high");
	flash.write("YOUR_DIV_ID_GOES_HERE");
*/

/* and here */

});

window.addEvent("load", function(){



});