$(document).ready(function()
{
	//hide the all div except first one
	$('.msg_body').hide();
	//when the anchor is clicked content gets faded
	$("a.linkclass").click(function()
    {	
		$('.msg_body:visible').slideUp("normal", function(){
			$($(this).attr("href")).slideDown("slow");
		});
		$($(this).attr("href")).slideDown("slow");		
	});
	//when the anchor CLOSE is clicked content gets CLOSED
	$("a.closeclass").click(function()
	{
		$('.msg_body').slideUp("slow");
	});
	
});

