// JavaScript Document

Cufon.replace(".contactUs h3", { fontFamily: 'Century Gothic' });
Cufon.replace(".contactUs h4", { fontFamily: 'Century Gothic' });
Cufon.replace("h3", { fontFamily: 'Century Gothic' });
Cufon.replace("h4", { fontFamily: 'Century Gothic' });

window.addEvent("domready",function(){
	// prevent ugly border on click of -ive text indent links
	$$("a").each(function(elm){
		elm.addEvent("click",function(linkElm){
			this.blur();
		});
	});
});
