
$(document).ready(function() {
    
// $("div#dom_biog_link").colorBlend([{colorList:["#AF006E",  "#26bcdf", "#8D8B00"], param:"background-color", fps:"1.5", cycles:"0"}]);       
	// 



	$("div#dom_biog_link").everyTime(1000,function(i) {  
					$(this).animate({backgroundColor: "#AF006E"}, 3000)
					$(this).animate({backgroundColor: "#26bcdf"}, 3000)
					$(this).animate({backgroundColor: "#8D8B00"}, 3000);
				});
    
	$("div#ray_biog_link").everyTime(1000,function(i) {  					
					$(this).animate({backgroundColor: "#26bcdf"}, 3000)
					$(this).animate({backgroundColor: "#8D8B00"}, 3000)
					$(this).animate({backgroundColor: "#AF006E"}, 3000);
				});

	$("div#matt_biog_link").everyTime(1000,function(i) {  
					$(this).animate({backgroundColor: "#8D8B00"}, 3000)
					$(this).animate({backgroundColor: "#AF006E"}, 3000)
					$(this).animate({backgroundColor: "#26bcdf"}, 3000);
				});            
				
	$("div#james_biog_link").everyTime(1000,function(i) {  
					$(this).animate({backgroundColor: "#26bcdf"}, 3000)
					$(this).animate({backgroundColor: "#8D8B00"}, 3000)
					$(this).animate({backgroundColor: "#AF006E"}, 3000);     
				});
                      
});

