$(document).ready(function () {
	createTicker();
}); 

function createTicker(){
	//set the quotes array
	tickerItems = new Array(
	'<strong>Press:</strong>  <a href="http://www.anydata.com/Press_10_19_11.html">GreatCall Announces Introduction of the 5Star Responder™ Device – Empowering People to Be Prepared for Any Situation</a>', 
	'<strong>Latest News:</strong>  <a href="http://www.anydata.com/Press_3_22_11.html">AnyDATA Announces Availability of High-Performance 7” Tablet</a>', 
	'<strong>Latest News:</strong>  <a href="http://www.anydata.com/Press_3_21_11.html">AnyDATA Strengthens Growth in Americas with Addition of new COO/President and VP of Sales and Marketing</a>'
	
	);
	i = 0;
	tickerIt();
}

function tickerIt(){
	if( i == tickerItems.length ){
		i = 0;
	}
	//change without effect
	//$('#ticker').html(tickerItems[i]);

	//change with effect
	$('#ticker').fadeOut("slow", function(){
		$(this).html(tickerItems[i]).fadeIn("slow");
		i++;
	});
	
	//repeat - change 5000 - time interval
	setTimeout("tickerIt()", 10000);
}
