// array of articles for the news ticker
var news = new Array();
news[0] = '<a href="http://www.safetyfirstracing.com/news/suspension-seminar-jan-31st-at-safety-first-racing">Suspension Seminar Jan 31st at Safety First Racing!!!</a>';
news[1] = '<a href="http://www.safetyfirstracing.com/news/kevin-hanson-radio-interview-in-houston-tx">Kevin Hanson Radio Interview in Houston, TX</a>';
news[2] = '<a href="http://www.safetyfirstracing.com/news/safety-first-racing-becomes-dealer-of-rs-taichi-apparel">Safety First Racing Becomes Dealer of RS Taichi Apparel</a>';
news[3] = '<a href="http://www.safetyfirstracing.com/news/ott-laguna-live-webcasting">OTT laguna live webcasting</a>';
news[4] = '<a href="http://www.safetyfirstracing.com/news/safety-first-suzuki-has-mixed-results-at-road-atlanta">Safety First Suzuki Has Mixed Results at Road Atlanta</a>';

$(function() {

	// flip through the 5 most recent news posts
	var i=1;
	setInterval(
		function(){
			$("#quick-news em").html(news[i]);
			i = (i < 4) ? i+1 : 0;
		}
	, 8000);


});