$(function(){
	//search form field behaviors
	$('#cse-search-box input[type="text"]').addClass("inactive");
	$('#cse-search-box input[type="text"]').val("search");
	$('#cse-search-box input[type="text"]').bind(
	"focus", function(){
        if($(this).is(".inactive")){
			$(this).removeClass("inactive");
			$(this).val("");
		}

    }).bind("blur", function(event){
        if($(this).val()==""){
			$(this).addClass("inactive");
			$(this).val("search");
		}
    });
});
