$(document).ready(function(){
	$("#content")
		.stop(true,true)
		.delay(400)
		.fadeIn(1000);

	$(".navListText li a, .listMargin a").mouseenter(function(){
		$(this)
		.stop(true,true)
		.animate({ color: "#900"/*, borderBottomColor: "#900"*/ }, 300)
		//.animate({ fontSize: "14px" }, "slow")
		//.addClass("red");
	});
	$(".navListText li a, .listMargin a").mouseleave(function(){
		$(this)
		.stop(true,true)
		//.removeClass("red")
		//.animate({fontSize: "12px"}, "fast")
		.animate({ color: "#666"/*, borderBottomColor: "#fff"*/ }, 300);
	});

	$(".floatLeft img").mouseenter(function(){
		$(this)
		.stop(true,true)
		.animate({ opacity: 0.5 }, 300)
	});
	$(".floatLeft img").mouseleave(function(){
		$(this)
		.stop(true,true)
		.animate({ opacity: 1 }, 300);
	});

	$(".floatLeft").css('background-color' , '#900');
});
