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

function createTicker(){
	//set the quotes array
	tickerItems = new Array(
'<font color="#ffffff" align="center"><b>TEDxMEC </b>to be held on the<b> 25th September 2010</b></font>',
'<font color="#ffffff" align="center"><b>Registrations Open</b></font>',
'<font color="#ffffff" align="center"><b>Nexus Navigate to be held on 25th September 2010</font>',
'<font color="#ffffff" align="center"><b>Excel Nights features Laser Show</b></font>',
'<font color="#ffffff" align="center"> Check this Space for further updates&#8230;</font>',
'<font color="#ffffff" align="center"><b><a href="http://www.acumengroup.in" target="_blank" style="color:yellow;">Acumen</a> DalalBull to begin on 6th September 2010</b></font>',
'<font color="#ffffff" align="center">Registration for the event <b>Paper Presentation</b> is open</font>',
'<font color="#ffffff" align="center">Deadline for submission of abstracts- <b>15th September 2010</b></font>'

	);
	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()", 4000);
}
