function createTicker(){
	//set the quotes array
	tickerItems = new Array(
	'<b>1. Construction Specific</b><br/><br/>Designed specifically for construction industry document management<br/><br/>', 
	'<b>2. Secure</b><br/><br/>Secure Access Key  Technology easily ensures the right documents get to the right people<br/><br/>', 
	'<b>3. Easy to use</b><br/><br/>No password or access administration required<br/><br/>', 
	'<b>4. Multi-purpose</b><br/><br/>View, download or print documents<br/><br/>', 
	'<b>5. Version Management</b><br/><br/>Automated version management for revised documents <br/><br/>', 
	'<b>6. Easy Print Orders</b><br/><br/>Order prints directly from reprographers<br/><br/>', 
	'<b>7. Communication</b><br/><br/>Quickly send messages to your project team<br/><br/>' 
	);
	i = 0;
	tickerIt();
}

function tickerIt(){
	if( i == tickerItems.length ){
		i = 0;
	}
	//change without effect
	//$('#tickerb').html(tickerItems[i]);

	//change with effect
	$('#tickerb').fadeOut("slow", function(){
		$(this).html(tickerItems[i]).fadeIn("slow");
		i++;
	});
	
	//repeat - change 5000 - time interval
	setTimeout("tickerIt()", 5000);
} 

$(document).ready(function () {
	createTicker();
}); 

