window.addEvent("domready",function(){
		Cufon.replace(".cufon");
});

window.addEvent("domready",function(){
	var a_tags = $$('a');
				
	a_tags.each(function(a){
		if(a.rel && a.rel.test(/^gallery/i)){
			a.setStyle("position","relative");
			span = new Element("span",{
  			  'html': 'zoom',
    		  'class': 'zoomphoto'
		    });
		    span.inject(a);
		}
	});	
});

window.addEvent('domready',function(){
	links=$$("a");
	links.each(function(e,i){
		rel=e.getAttribute("rel");
		if(rel=="external"){
			e.target="_blank";
		}
	});
});
window.addEvent('domready',function() { 
  new SmoothScroll({ duration:700 }, window); //700 milliseconds to get there 
});