// JavaScript Document
$(document).ready(function() {
	$("#mainMenu ul").addClass('sf-menu').superfish({            
            animation:   {opacity:'show',height:'show'}, 
			// fade-in and slide-down animation            
            autoArrows:  false,  // disable generation of arrow mark-up         
        }); 	    
	
	if(document.getElementById('s').value == "") {
			document.getElementById('s').value = "Search Site";

	}
	addListener("focus",function(){ 
	if(document.getElementById('s').value == "Search Site") {
		 document.getElementById('s').value =""; 
		 }
	}, document.getElementById('s'));
	
	addListener("blur",function(){ 
	if(document.getElementById('s').value == "") {
		 document.getElementById('s').value ="Search Site"; 
		 }
	}, document.getElementById('s'));

	document.getElementById('email').value = "Your Email Address";
	
	addListener("focus",function(){ 
	if(document.getElementById('email').value == "Your Email Address") {
		 document.getElementById('email').value =""; 
		 }
	}, document.getElementById('email'));
	
	addListener("blur",function(){ 
	if(document.getElementById('email').value == "") {
		 document.getElementById('email').value ="Your Email Address"; 
		 }
	}, document.getElementById('email'));
	
	$("#resetButton").show();
	$('#resetButton').click(function() {
		$('#contactTable textarea').val("");
		$('#contactTable .textbox').val("");
	});
});
 

