//***********************************input text
$(function(){
	$('input[value=""]').val("店舗検索")
		.css("color","#969696");   
    $("input").focus(function(){   
        $(this).css("border-color" , "#eee");
        if(this.value == "店舗検索"){   
        	$(this).val("").css("color","#000");   
        }   
    });   
    $("input").blur(function(){   
        $(this).css("border-color" , "#fff");
        if(this.value == ""){   
            $(this).val("店舗検索")
            	.css("color","#969696");   
        }   
        if(this.value != "店舗検索"){   
            $(this).css("color","#000");  
             
        }   
    });
    $("input.samp-button").click(function(){
		$('input[value="店舗検索"]').val("");
	});
});
