window.addEvent('domready', function() {
									 
		// Quotes
		var periodical;
		counter = 0;

		var quotes = $$("#quotes_animation blockquote");
		var container = $("quotes_animation");
		
		
		function fadeQuote(){
			
			quotes.each(function(element) {
				element.style.display = 'none';				   
			});
			
			if(counter==1 || counter==3 || counter==5 || counter==7 ){
				
				quotes[counter].style.backgroundColor = '#F1FDE9';	
			}else{
				
				quotes[counter].style.backgroundColor = '#ECECEC';
				
			}
			
			quotes[counter].style.display = 'block';
			
			if(counter<(quotes.length-1)){
				
				counter++
			}else{
				
				counter=0;
			}
		
		}
	
		fadeQuote();
		
		periodical = fadeQuote.periodical(10000);
		
		
	
		
		
		
});
