		
		$(document).ready(function()
		{
		//it will hide all the div's except first one.
		
		$('.msg_body').hide()
		
		//when the link is clicked content gets slided
		
		$(".linkclass").click(function()
		 {
			$('.msg_body').slideDown("slow");
		});	
		
		
		$(".linkclose").click(function()
		 {
			$('.msg_body').slideUp("slow");
		});	
		
	});
