<!--//---------------------------------+
//  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 faded
	$("a.button1").mouseover(function()
    {
		$('.msg_body').fadeOut("slow");
		$($(this).attr("href")).fadeIn("slow");
	});
	
});