$(function() {
	$('ul.hilite_targets a').bind('click', function() {
		$('a[name] h3').css({color: '#000'});
		$('a[name=' + this.hash.substr(1) + '] h3').css({color: '#c00'});
	});
    
    function anim() {
        $('.anim').fadeTo(1000, 0.1, function() {
            $(this).fadeTo(1000, 1);
            anim();
        });
    }

    anim();
});