var randomTip = new Array('&hellip;view tasks and status.','&hellip;track inventory, assets and more.','&hellip;organise multimedia files.','&hellip;print invoices, letters and labels.','&hellip;create reports in <abbr title="Portable Document Format">PDF</abbr> and Excel.','&hellip;create customised forms.','&hellip;email field contents with one click.','&hellip;publish catalogues to the web.','&hellip;share data on Windows and Mac.','&hellip;manage client details.');
function getRandTip(){
	var rand_no = Math.random();
	rand_no = rand_no * randomTip.length;
	rand_no = Math.ceil(rand_no);
	rand_no = rand_no - 1;
	return randomTip[rand_no];
}
function changeTip() {
	document.getElementById('randomTip').innerHTML=getRandTip();
	
}
function cycleTips() {
	setInterval("changeTip()",4000);
}
