window.addEvent("domready", function(){
	
	new SmoothScroll({"links": $$(".scroll")});

	$$(".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");
	});
	
	$$("ul.logos").each(function(el){
		new ListItemSelector($(el),{ "fxMin": 0.4, "fxMax": 1 });
	});
		

	
	
	










});
