var jQ			= jQuery.noConflict();
	
jQ(document).ready(function()
{
	//slide down of the message box
    jQ("#object").animate({ 
        top: "0px"
      }, 300 ).fadeIn(100);
   
   //close the message box when the cross image is clicked 
   jQ("#close_message").click(function()
	{
	   jQ("#object").fadeOut("slow");
	});
});

jQ(document).ready(function(){
		jQ(document).ready(function () {
		jQ('#page_effect').fadeIn(1500);
      	});
		});
