var $j = jQuery.noConflict();
$j(document).ready(function()
{
	
    //when the close button at right corner of the message box is clicked 
	$j('#inchide_mesaj').click(function()
	{
  		//the messagebox gets scrool down with top property and gets hidden with zero opacity 
		$j('#message_center').animate({ top:"-=5px",opacity:0 }, "slow");
	});
});