//
$(document).ready(function(){ 
$("#maintext").hide();
setTimeout('fadeIn()',800);
});
function fadeIn(){
$("#maintext").fadeIn("slow");
}

