(function($){

var RedingerEHS = {
   ondomready: function(){
	RedingerEHS.handleLogo();	
	RedingerEHS.handleInputs();
	
   },
   

   handleLogo: function() {
   	$("#logo").click(function() {
   		document.location.href="/";
   		return ( false );
   	
   	});
   },
   
   handleInputs: function() {
   	
   	
   	$("#s").focus(function() {
   		var strTerm = "Search";
		if ($(this).val() == strTerm)
   			$(this).val("");
		$(this).addClass("textinputactive");  			
   	}).blur(function() {
   		var strTerm = "Search";
		if ($(this).val() == "")
   			$(this).val(strTerm);
		$(this).removeClass("textinputactive");  			
   	});
   	
   	$("#email").focus(function() {
   		var strTerm = "Enter E-mail Address";
		if ($(this).val() == strTerm)
   			$(this).val("");
		$(this).addClass("textinputactive");  			
   	}).blur(function() {
   		var strTerm = "Enter E-mail Address";
		if ($(this).val() == "")
   			$(this).val(strTerm);
		$(this).removeClass("textinputactive");  			
   	});
   	
   	
   	
   	
   }
   
   
   
}

window.RedingerEHS = RedingerEHS;

$(document).ready(function(){RedingerEHS.ondomready();});

})(jQuery);
