$(document).ready(

function() { // When the Dom is ready 

$("#messagebox").hide(); //Hide the div 
$("#messagebox").fadeIn(3000);  //Add a fade in effect that will last for 3 seconds
$("#messagebox").fadeOut(3000);
$("#messagebox").fadeIn(3000);  //Add a fade in effect that will last for 3 seconds

}

);
