$(function() {

	$('.makeTabs').tabs(2, { fxFade: true, fxSpeed: 'fast' });    

    //hide the all of the element with class msg_body
    $(".toggleContent").hide();
    //toggle the componenet with class msg_body
    $(".toggleBtn").click(function()
    {
         $(this).next(".toggleContent").slideToggle(600);
    });

});

$(document).ready(function() {
	 $('.makeTabs').css("visibility","visible");   
	// fix ugly loading
});