jQuery(function(){
	//loads drop menu
	$(".nav ul").superfish();
	
	//header images
	var path = window.location.pathname;
	var fileName = path.substring(path.lastIndexOf('/') + 1).toLowerCase();

	$('#banner').addClass(fileName);
	
	//forms 
     $('input[type="text"]').focus(function() {  
         $(this).addClass("focusField");  
         if (this.value == this.defaultValue){  
             this.value = '';  
         }  
         if(this.value != this.defaultValue){  
             this.select();  
         }  
     });  
     $('input[type="text"]').blur(function() {  
         $(this).removeClass("focusField");  
     });
	 
});