$(document).ready(function()
{
	//hide the all div except first one
	$('.msg_body:not(:first)').hide();
	//when the anchor is clicked content opens like shutter 
	$("a.linkclass").click(function()
    {
		$('.msg_body').hide("fast");
		$($(this).attr("href")).show("slow");
	});
	
});
