$(document).ready(function () {
    $('.aboutBook').css("width","525px");

});




function showSubNav() { 
	$("li.globalSubNav").addClass("subnav").toggle("slow");
}


function toggleTabs(tabChoice) {
	//alert("tab selected" + tabChoice);

	if (tabChoice == 'tab2')
	{
	$('.tab3').removeClass("selected");
	$('.tab1').removeClass("selected");

	$('.tab2').addClass("selected");
	$('.bookPreview').show('slow');

    $('.aboutBook').hide('fast');
	$('.whereToBuy').hide('fast');
	

    return false;		
	}

	if (tabChoice == 'tab1')
	{
	$('.tab2').removeClass("selected");
	$('.tab3').removeClass("selected");

 	$('.tab1').addClass("selected");
	$('.aboutBook').show('fast');   

	$('.bookPreview').hide('slow');
	$('.whereToBuy').hide('fast');
	


    return false;		
	}

	if (tabChoice == 'tab3')
	{
	$('.tab2').removeClass("selected");
	$('.tab1').removeClass("selected");

 	$('.tab3').addClass("selected");
	$('.whereToBuy').show('fast');
	   

	$('.bookPreview').hide('slow');
	$('.aboutBook').hide('fast');
	


    return false;		
	}

};