$(document).ready(function(){


setTimeout(function() {
		cycle_colors();
    }, 300);


	function cycle_colors() {
		$('body *').each(function(){
			$(this).animate({color:'#F00'}, 10000);
			$(this).animate({color:'#0F0'}, 10000);
			$(this).animate({color:'#00F'}, 10000);
		});
		
		setTimeout(function() {
								cycle_colors();
	    }, 30000);


		
	}	
	
	
	
	
	$('a#explode').click(function() {
		$('p.textbox').animate({'color':'#000'}, 100);
				return false;
	});
});