// Cufon
Cufon.replace('h2');
Cufon.replace('h3');
Cufon.replace('#header-navigation li a', { hover: true});
Cufon.replace('#content h2', { fontFamily: 'Lato Light' });
Cufon.replace('#content h2 strong', { fontFamily: 'Lato' });

// External Links
function externalLinks() {  
 if (!document.getElementsByTagName) return;  
 var anchors = document.getElementsByTagName("a");  
 for (var i=0; i<anchors.length; i++) {  
   var anchor = anchors[i];  
   if (anchor.getAttribute("href") &&  
       anchor.getAttribute("rel") == "external")  
     anchor.target = "_blank";  
 }  
}  

window.onload = externalLinks;

// Clear Form Field
function clearText(thefield){
	if (thefield.defaultValue==thefield.value)
	thefield.value = ""
} 

