
    $(document).ready(function () {   
								
			// Remove 'search' text from search input field
        	jQuery("#s").focus(function () { 
            jQuery("#s").addClass("searchactive");
            return false;
        });   
			
			// Add 'search' text back to search input field
			jQuery("#s").blur(function () { 
            jQuery("#s").removeClass("searchactive");
            return false;
        });  
			
		 // Add and remove 'pointer' text back to search input field
		$('#searchsubmit').hover(function() {
		  $(this).addClass('searchhand');
		}, function() {
		  $(this).removeClass('searchhand');
		});
					
			
			
			
			
			
			
	});

