

this.fadeLinks2 = function() {	
	
	var selector = ".fdlinkclass2 a"; //modify this line to set the selectors
							
	$(selector).each(function(){ 

		$(this).hover(
			function(){
				$(this).animate({ color: "#f30" },500);
			},
			function(){
				$(this).animate({ color: "#069" },500);
			}			
		)
	});
};

$(document).ready(function(){	
	fadeLinks2();
});
