$(document).ready(function() {
	$('#tab_area > ul').tabs({ fx: { opacity: 'toggle' } });
});
$(document).ready(function(){  
     
// When a link is clicked  
    $("a.tab_btn").click(function () {  
           
         // switch all tabs off  
         $(".noshow").removeClass("noshow");  
        
    });  
  
});  