// JavaScript Document
$(document).ready(function(){
						   
  var KeyBkTxt="站内搜索，请在这儿输入关键字"
  //搜索提示框 
$("#SearchKey").focus(function(){
	$(this).css({color:"#333"})
	var KeyTxt=$(this).val()
	if (KeyTxt==KeyBkTxt)
	{
		$(this).val("")
	}
})
$("#SearchKey").blur(function(){
	$(this).css({color:"#aaa"})
	if ($(this).val()=="")
	{
		$(this).val(KeyBkTxt)
	}
})

//文章搜索
$("#Title_Search").submit(function(){
	var keyword=$("#SearchKey").val()
	var catg_code=$("#catg_code").val()

	if (keyword!="" && keyword!=KeyBkTxt)
	{
		
		var url= "?action=search&keyword="+encodeURI(keyword)+"&catg_code="+catg_code;
		window.open(url,"_blank")
	}
	return false
})
}); 



