function rotateevery(sec)
{
	var bannertext = new Array()
	// bannertext
	bannertext[0] = '<b>XL-Addin:</b> Excel add-ins suite';
	bannertext[1] = '<b>Silvershow:</b> Export Power Point presentations to Silverlight';
	bannertext[2] = '<b>Queryshow:</b> Export Power Point presentations as web pages';
	bannertext[3] = '<b>Xidie Security Suite:</b> A complete set of security tools';
	bannertext[4] = '<b>SpyXie Voice Chat:</b> Voice Chat for LAN';
	bannertext[5] = '<b>SpyXie UnderNetwork:</b> Remote computer monitoring software';
	bannertext[6] = '<b>VBScriptMania:</b> Over 2000 VBScripts';
	bannertext[7] = 'IT Consultancy and software development services ';
	bannertext[8] = '<b>http://www.add-in.ro</b>';
	var which = Math.round(Math.random()*(bannertext.length - 1));
	document.getElementById('textrotator').innerHTML = bannertext[which];
	setTimeout('rotateevery('+sec+')', sec*1000);
}
