$(document).ready(function(){

$(".content").hide();
$(".content").fadeIn(1000);

$(".subnav").hide();
$(".subnav").fadeIn(1000);

$(".footer").hide();
$(".footer").fadeIn(1000);

$("img").hide();
$("img").fadeIn(2000);

$("a").fadeTo("fast", 0.8);
$("a").hover(function(){
$(this).fadeTo("fast", 2.0);
},function(){
$(this).fadeTo("slow", 0.8);
});

});
