<!--
//************************************************************
$(function(){
	$("a").focus(function(){this.blur()});
	//$(document).bind('contextmenu',function(){return false;});
	//$(document).bind('selectstart',function(){return false;});
});
//************************************************************
$(function(){
	$(".addcollect").click(function(){
		var ctrl = (navigator.userAgent.toLowerCase()).indexOf('mac') != -1 ? 'Command/Cmd' : 'CTRL';
		if (document.all){
			window.external.addFavorite(window.location.href, document.title);
		}
		else if (window.sidebar){
			window.sidebar.addPanel(document.title, window.location.href, '');
		}
		else{
			alert('您可以尝试通过快捷键' + ctrl + ' + D 加入到收藏夹~');
		}
	});
});

$(function(){
	if ($('#marquee').length > 0){
		new Marquee("marquee","top",1,208,150,50,5000)
	}
});
//************************************************************
$(function(){
	$("#search_submit").click(function(){
		if($("#keywords").val()==""){
			$("#keywords").val("请输入关键字");
			setTimeout('$("#keywords").val("")',1000);
			return false;
		}
		else{
			window.location.href='search.asp?keywords='+encodeURI($('#keywords').val());
		}
	})	
});
//************************************************************
//-->
