$(document).ready(function () {
	createTicker();
}); 

function createTicker(){
	//set the quotes array
	tickerItems = new Array(
	'"We offer roadside assistance anywhere in Bangalore <br/>24-hours, 365 days a year. ', 
	'"Our average response time is around 30 minutes.', 
	'"RESCUE Member Vehicles who have broken down, <br/>please call 24 hour .RESCUE line : 080 3291 9122',
	'"We fix 93% of our members vehicle breakdown at the roadside.',
	'"This includes puncture,replacements of cables ,<br/>cleaning of plugs/jets, jumpstarts etc.'
	);
	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()", 5000);
}
