//Manage search box default text
/****

Requires:
	mootools-1.2.4.2-more-yc.js
	mootools-1.2.4-core.js
	CommonScripts.js (HighlightingRotation Class)
	
****/
//<![CDATA[
window.addEvent('domready', function() {
   new HighlightingRotation({
		containerId: 'RotationGroup', //id of container holding the anchors
		//speeds in milliseconds
		hoverSpeed: 300, //speed of fade on hover; should be less or equal to fadeSpeed
		fadeSpeed: 1500, //speed of fade during rotation
		rotateSpeed: 5000, //speed between rotations; should be more than fadeSpeed
		fadeText: 0.7, //percentage (as decimal) to fade text to when inactive
		showText: 1.0, //percentage (as decimal) to fade text to when active
		textClass: 'linkText',
		noRandomStart: 1
	});
});
//]]>