$(document).ready(
    function(){
	// search box
	$("#s").blur(
	    function(){ 
		if (this.value == '') {
		    this.value = 'Search Site'
		}
	    }
	);
	$("#s").focus(
	    function(){
		if (this.value == 'Search Site') {
		    this.value = '';
		}
	    }
	);

	// email box
	$("#cc_email").blur(
	    function(){ 
		if (this.value == '') {
		    this.value = 'Email Address'
		}
	    }
	);
	$("#cc_email").focus(
	    function(){
		if (this.value == 'Email Address') {
		    this.value = '';
		}
	    }
	);

	// zip code box
	$("#cc_zip").blur(
	    function(){ 
		if (this.value == '') {
		    this.value = 'Zip Code'
		}
	    }
	);
	$("#cc_zip").focus(
	    function(){
		if (this.value == 'Zip Code') {
		    this.value = '';
		}
	    }
	);


        /*
         * take action hover images
         * */
        
        $("#you_can_help li a img").hover(
	    function(){ 
                var new_src = this.src;
                new_src = new_src.replace(".png","_active.png");
		this.src = new_src;
	    },
            function(){ 
                var new_src = this.src;
                new_src = new_src.replace("_active.png",".png");
		this.src = new_src;
	    }

	);


    }
);
