//  Developed by Roshan Bhattarai 
//  Visit http://roshanbh.com.np for this script and more.
//  This notice MUST stay intact for legal use
$(document).ready(function()
{
    //when the close button at right corner of the message box is clicked 
	$('#close_message').click(function()
	{
  		//the messagebox gets scrool down with top property and gets hidden with zero opacity 
		$('#message_box').animate({ left:"-=1001px", opacity: 0}, "slow", function() { $('#message_box').remove();
	});
});
});

$(document).ready( function(){
	setTimeout(function(){
		$('#message_box').animate({ left:"-=1001px", opacity: 0}, "slow", function() { $('#message_box').remove();
		});
	}, 8000);
});



//  Developed by Roshan Bhattarai 
//  Visit http://roshanbh.com.np for this script and more.
//  This notice MUST stay intact for legal use
$(document).ready(function()
{
    //when the close button at right corner of the message box is clicked 
	$('#close_message').click(function()
	{
  		//the messagebox gets scrool down with top property and gets hidden with zero opacity 
		$('#message_box2').animate({ left:"-=1001px", opacity: 0}, "slow", function() { $('#message_box').remove();
	});
});
});

$(document).ready( function(){
	setTimeout(function(){
		$('#message_box2').animate({ left:"-=1001px", opacity: 0}, "slow", function() { $('#message_box').remove();
		});
	}, 8000);
});




