$(document).ready(function () {
	createTicker();
}); 

function createTicker(){
	//set the quotes array
	tickerItems = new Array(
	'<b> R.H Dabbas, The Landscape Solution</b><br>The site design is more creative rather than our expectations. Qaiser give best solutions for our company site for develop our business.<br/><b>(Terraverde)</b>', 
	'<b> M.Q. Programmer</b><br>I am feeling great to work with this intellectual person who deals in a professional way and cooperate with me for design my different project sites.<br/><b>(Stardesign)</b>', 
	'<b>Caron Thomas</b><br>Very brilliant and creative, designer, excellent skills in web and graphic design, he did what i was looking for. He is very professional and pleasant to deal with. It was a pleasure to work with him, and believe me, you wont ever regret entrusting a project to him. He will exceed your expectations!<br/><b>(systemflex)</b>'
	);
	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);
}
