$(document).ready(function(){
	if($("ul.bannerArea").is("p")){
		$("ul.bannerArea p.overText:not(.white)").FontEffect({
			outline: true,
			outlineColor1: "#FFFFFF",
			outlineWeight: 2
		});
		$("ul.bannerArea p.white").FontEffect({
			outline: true,
			outlineColor1: "#666666",
			outlineWeight: 1
		});
	}
	$("#keyText")
	.focus( function(){ $(this).css("background-color", "#FFFFFF"); } )
	.blur( function(){
		if ($(this).val()==""){
			$(this).css("background-color", "transparent");
		}
	});
	$("#keyButton")
	.hover(
		function(){ $(this).attr("src","/2009/images/town/search_btn_02.gif"); },
		function(){ $(this).attr("src","/2009/images/town/search_btn_01.gif"); }
	)
	.click( function(){ $(this).submit(); });
	
});
