// Cufon
Cufon.replace('.slide-content h2');
Cufon.replace('.slide-content p');
Cufon.replace('#template-home #content h2');
Cufon.replace('#template-home #content h3');
Cufon.replace('dl#options dt');
Cufon.replace('#signup label');

Cufon.replace('#template-content #right h4');
Cufon.replace('#template-categories #left h2');
Cufon.replace('.error h2');
Cufon.replace('.module h4');
Cufon.replace('#comments h3');
Cufon.replace('#comments label');

// 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 = ""
}

//Call The Slideshow
jQuery(document).ready(function(){
    jQuery('#slideshow').fadeSlideShow();
});



