/*$(document).ready(function(){ 
$('#tabs div').hide(); // Hide all divs 
$('#tabs div:first').show(); // Show the first div 
$('#tabs ul li:first').addClass('active'); //Set the first link's class to active 
$('#tabs ul li a').click(function(){ //When any link is clicked 
$('#tabs ul li').removeClass('active'); // Remove active class from all links 
$(this).parent().addClass('active'); //Set clicked link class to active 
var currentTab = $(this).attr('href'); // Set variable currentTab 
$("#tabs div:visible").fadeOut("slow",function(){ //fade out visible div 
$(currentTab).fadeIn("slow") //fade in target div 
});return false; 
}); 
}); */

$(document).ready(function(){ 
$('#tabs #tab-1').hide(); // Hide all divs 
$('#tabs #tab-2').hide(); // Hide all divs 
$('#tabs #tab-3').hide(); // Hide all divs 
$('#tabs #tab-4').hide(); // Hide all divs 
$('#tabs #tab-5').hide(); // Hide all divs 
$('#tabs #tab-6').hide(); // Hide all divs 
//$('#tabs div:first').show(); // Show the first div 
$('#tabs #tab-1').show();

$('#newtab ul li :first').addClass('active'); //Set the first link's class to active 
$('#newtab ul li a').click(function()
								  { //When any link is clicked 

$('#newtab ul li').removeClass('active'); //Remove active class from all links 

$(this).parent().addClass('active'); //Set clicked link class to active 
var currentTab = $(this).attr('href'); // Set variable currentTab 
$("#tabs #tab-2").fadeOut("slow",function(){ //fade out visible div 
$('#tabs #tab-1').hide(); 
$('#tabs #tab-2').hide(); 
$('#tabs #tab-3').hide(); 
$('#tabs #tab-4').hide(); 
$('#tabs #tab-5').hide(); 
$('#tabs #tab-6').hide(); 
$(currentTab).fadeIn("slow") //fade in target div 
});return false; 

}); 
});