var globalCount = 0;

function alertIt(index){
	if(globalCount == index) {
		globalCount = 0;
	} else {
	globalCount++;
	}
	$('#newsticker li:nth-child('+globalCount+')').slideDown('slow').delay(3000).slideUp('slow');;
}
	$(document).ready(function(){
	//$('#newsticker li:nth-child(4)').delay(12200).slideDown('slow');
	var length = $('#newsticker li').length;
	alertIt(length);
	setInterval("alertIt('"+length+"')",7000);	

	$("#popupContactbox").slideDown('slow');
	/*
	$('#testimonials').innerfade({
				speed: 'slow',
				timeout: 8000,
				type: 'sequence',
				containerheight: '13px'
	});
*/
	
	
});