window.addEvent('domready', function() { 

	///////////////////////////////////////////////////////////
	if(document.getElementById('search')){
	new Autocompleter.Ajax.Json('search', 'http://'+SERVER_NAME+'/s.php', {
		'postVar': 'q'
	});
	}
	///////////////////////////////////////////////////////////

	new SmartHoverBox({



		yOffset: -250, //set your options in here



		xOffset: 100,



		lockY:'',



		lockX:'none'



	}); 



	new SmartHoverBox({

		yOffset: 0, //set your options in here

		xOffset: 0,

		smartBoxSuffix  : '_sbox' //suffix that creates a hover box

	}); 

	new SmartHoverBox({

		yOffset: -120, //set your options in here

		xOffset: -150,

		lockX:'',

		lockY:'',

		smartBoxSuffix  : '_sbox2' //suffix that creates a hover box

	}); 

	



	$$('#field1, #field2, #field3, #field4, #field5, #field6').addEvents({



		'keydown':function(){



			name=this.id;



			newname=this.id+"-2";



		},



		



		'keyup':function(){



			name=this.id;



			newname=this.id+"-2";



			$(newname).value=this.value;



		},



		



		'blur':function(){



			name=this.id;



			newname=this.id+"-2";



			$(newname).value=this.value;



			$(newname).setStyle('color','#000000');



		},



		



		'focus':function(){



			name=this.id;



			newname=this.id+"-2";



			$(newname).setStyle('color','#FF9C1C');



		}



	



	});



	



});