// JavaScript Document
$(function(){
    $('input.box[value="サイト内検索"]').val("サイト内検索") 
	    .css("color","#969696");    
	$("input.box").focus(function(){
		if(this.value == "サイト内検索"){
			$(this).val("");
		}
		if(this.value != "サイト内検索"){
			$(this).css("color","#000");
		}
	});
	$("input.box").blur(function(){
		if(this.value == ""){
			$(this).val("サイト内検索")
			     .css("color","#969696");
		}
		if(this.value != "サイト内検索"){
			$(this).css("color","#000");
		}
	});
	if(navigator.userAgent.indexOf("MSIE") > -1){
	$("input.search-btn").click(function(){
		    $('input.box[value="サイト内検索"]').val(""); 
	});
	}
	else {
	}
});
