$(function() {
	$('#glare').fadeIn(500);
	$('#logo').fadeIn(2000);
	$(".user-index-five a").hover(
		function () {$(this).animate({color: '#b40000'});},
		function () {$(this).animate({color: '#000000'});}
	);
	$(".user-index-four a").hover(
		function () {$(this).animate({color: '#000000'});},
		function () {$(this).animate({color: '#ffffff'});}
	);
	$("#header-text a").hover(
		function () {$(this).animate({color: '#000000'});},
		function () {$(this).animate({color: '#ffffff'});}
	);
	$("#footer a").hover(
		function () {$(this).animate({color: '#000000'});},
		function () {$(this).animate({color: '#ffffff'});}
	);
});
