$(function(){
	if($('#header-search input[type="text"]').val() == "") {
		$('#header-search input[type="text"]').css('background', 'url(//www.ibarakiguide.jp/google_search_watermark.gif) no-repeat left center #fff')
	}

	$('#header-search input[type="text"]')
		.focus(function(){
			$(this).css('background', 'none repeat scroll 0 0 #fff');
		})
		.blur(function(){
			if($(this).val() == "") {
				$(this).css('background', 'url(//www.ibarakiguide.jp/google_search_watermark.gif) no-repeat left center #fff');
			}
		});
});
