function HideFlashDivOnly() {
   // $('#Flashbook').hide();
}

function HideFlash() {
// Find out what browser they are on. We can't sniff by ability, because we know that IE supports 'fadeIn', but it's not
// very good at actually doing it. So we need to just select by browser type. Very 2008, but it works..
/*    if ($.browser.msie) {    
		$('#placeholder').hide();
	    $('#leftcolumn').show();
//	    $('#Flashflip').hide();
	    $('#wrapper').removeClass('nobook');
	    $('#nav1').show();
	    $('#nav2').show();
	    $('#nav3').show();
	    $('#nav4').show();
	    $('#nav5').show();
	    $('#nav6').show();
	    $('#nav7').show();
	    $("#contentleft").show();
		$("#breadcrumb").show();
	    $("#contentright").show();
	    $('.sf-menu').show();
	     $("ul.menu").show();
	}
	else {
	  // For everything but IE, fade in
	    $('#leftcolumn').fadeIn();
//	    $('#Flashflip').hide();
	    $('#wrapper').removeClass('nobook');
	    $('#nav1').fadeIn();
	    $('#nav2').fadeIn();
	    $('#nav3').fadeIn();
	    $('#nav4').fadeIn();
	    $('#nav5').fadeIn();
	    $('#nav6').fadeIn();
	    $('#nav7').fadeIn();
	    $("#contentleft").fadeIn();
		$("#breadcrumb").fadeIn();
	    $("#contentright").fadeIn();
	    $('.sf-menu').fadeIn();
	    $("ul.menu").fadeIn();
	} */
    window.location = "Home";
}

function PageFlip() {
	/* if (!$.browser.msie) {
	    $('#Flashflip').fadeOut();
	    $('#pagelinks').fadeIn();
	     $('#nav1').fadeIn();
	    $('#nav2').fadeIn();
	    $('#nav3').fadeIn();
	    $('#nav4').fadeIn();
	    $('#nav5').fadeIn();
	    $('#nav6').fadeIn();
	    $('#nav7').fadeIn();
	    $('.sf-menu').fadeIn();
	    $("#contentleft").fadeIn();
	    $("#contentright").fadeIn();
	    $('#pagelinks').fadeIn();
	     $("ul.menu").fadeIn();
	}
	else {
	  	$('#Flashflip').hide();
		$('#pagelinks').show();
	    $('#nav1').show();
	    $('#nav2').show();
	    $('#nav3').show();
	    $('#nav4').show();
	    $('#nav5').show();
	    $('#nav6').show();
	    $('#nav7').show();
	    $('.sf-menu').show();
	    $("#contentleft").show();
	    $("#contentright").show();
	    $('#pagelinks').show();
	     $("ul.menu").show();
	}*/
}
