function lmLinks() {

    $("a.fade, .think-list a").hover(function() {
    $(this).stop();
    $(this).animate({ color: "#666" }, 250);
    }, function() {
    $(this).stop();
    $(this).animate({ color: "#ccc" }, 500);
	
	
});
	
	$("a.fade2, .think-list a").hover(function() {
    $(this).stop();
    $(this).animate({ color: "#ccc" }, 250);
    }, function() {
    $(this).stop();
    $(this).animate({ color: "#0CF" }, 500);
	
	
});
}


