// JavaScript Document


$("document").ready( function (){
$("#mainimage").fadeOut(0);
$("#topdiv").fadeOut(0);
$("#bottomdiv").fadeOut(0);
$("#mainimage").fadeIn(100);
$("#topdiv").fadeIn(600);
$("#bottomdiv").fadeIn(400);

$(".concontent").fadeOut(0);
$(".concontent").fadeIn(600);
});
