
<!--//---------------------------------+
//  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()
{
	//hide the all div except first one
	$('.msg_body:not(:first)').hide();
	//when the anchor is clicked content gets slided
	$("a.linkclass").click(function()
    {
		$('.msg_body').slideUp("8000");
    $($(this).attr("href")).animate({ dummy: 1 }, 700).slideDown("8000");
	});	
});
