(function ($) {
	 $('form').find('input:text,input:password').focus(function(){$(this).select();});
	 $('.button > label.reg').click(function(){
		 document.location.href="./?do=reg";
	 })
	 $('#myform').submit(function(){

		 if(document.myform.q.value=="" || document.myform.q.value=="关键字"){
		     alert("请输入关键字");
		     document.myform.q.focus();
		     return false;
		 }
		 var val=document.myform.q.value;
		 val = val.replace(",","&#8218;")
		 //alert(val)
		 document.location.href="./Search.asp?q="+val;
		 return false;
	 })
	 
	 $('#play').cycle({
	     fx: 'fade',
 	     startingSlide: 0,
 	     timeout:  5000,
  	     speed:    1000,
         pause:  1 ,
		 'hideOnContentClick': true,
		 'overlayShow':	true,
		 slideExpr:".item",
		 pager:"#imgpage",
		 pagerAnchorBuilder: pagerFactory
	 }); 
	 
	 function pagerFactory(idx, slide) {
	     return '<a href="javascript:void(0)">'+(idx+1)+'</a>';
	 };   

    function isMaxLen(o){
        var nMaxLen=o.getAttribute? parseInt(o.getAttribute("maxlength")):"";
        if(o.getAttribute && o.value.length>nMaxLen){
            o.value=o.value.substring(0,nMaxLen)
    }}
	
}(jQuery));

