
$(document).ready(function(){ 
	//navigation
	$(".fc img").fadeTo(0, 0.35); // This sets the opacity of the thumbs to fade down to 60% when the page loads

	$(".fc img").hover(function(){
				$(this).fadeTo("slow", 1.0); // This should set the opacity to 100% on hover
				},function(){
				$(this).fadeTo("slow", 0.35); // This should set the opacity back to 60% on mouseout
				});
	//404
    $('#404txt a').hover(function()
    {
        $(this).animate({color: "#554236"}, 500)
    },
    function()
    {
        $(this).animate({color: "#b0aba7"}, 500)
    });
	
	//footer
    $('#footer a').hover(function()
    {
        $(this).animate({color: "#554236"}, 500)
    },
    function()
    {
        $(this).animate({color: "#b0aba7"}, 500)
    });
}); 						  
						 
