var randomTip = new Array('&hellip;build a mailing list of customers and prospects.','&hellip;get access to contact details, including names, numbers, email address, recent orders, and related contacts instantly.','&hellip;store your product details complete with part numbers and pictures, and link it to your sales order database to eliminate duplicate data entry.','&hellip;produce a catalogue of your products and publish it to the web in a few clicks.','&hellip;process sales orders and print invoices with a click.','&hellip;keep projects and assigned tasks on track.','&hellip;send marketing emails every month.','&hellip;print mailing labels and personalised letters for special occasions.','&hellip;produce sales and inventory reports in <abbr title="Portable Document Format">PDF</abbr> or Excel formats.','&hellip;manage and build your business more efficiently than ever before!');
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);
}
