$(document).ready(function(){
	
	 
		//$.fn.nyroModal.settings.debug = true;	
		
		function preloadImg(image) {
			var img = new Image();
			img.src = image;
		}
		/*
		preloadImg('/images/ajaxLoader.gif');
		preloadImg('/images/prev.png');
		preloadImg('/images/next.png');
	*/
        
        $("#formusername").focus( function(){
            $(this).val(''); 
        });
        
        $("#formpassword").focus( function(){
            $(this).val(''); 
        });
   
    
		$("#phrase").autocomplete("/ajax.autocomplete.php?sel=o", {
			autoFill: false,
			minChars:2, 
			matchSubset:0, 
			selectFirst:false,
			matchContains:1, 
			cacheLength:10, 
			selectOnly:1,
			max: 10,
			delay:10
		});
	
		$("#phrase2").autocomplete("/ajax.autocomplete.php?sel=o", {
			autoFill: false,
			minChars:2, 
			matchSubset:0, 
			selectFirst:false,
			matchContains:1, 
			cacheLength:10, 
			selectOnly:1,
			max: 10,
			delay:10
		});
       

        if($("#phrase").attr('value').length == 0)  $("#phrase").val('Etsi');
        
        $("#phrase").focus( function(){
            if($("#phrase").attr('value')  == "Etsi"){
                $(this).val(''); 
            }
         });
         
         //$("#phrase").focus();
         
         
	});
	
	
	 
	<!--
	function MM_goToURL() { //v3.0
	  var i, args=MM_goToURL.arguments; document.MM_returnValue = false;
	  for (i=0; i<(args.length-1); i+=2) eval(args[i]+".location='"+args[i+1]+"'");
	}
	//-->
