
/**
 * staticpage.js
 * This function is called when we are NOT doing a page transition needing the page-flip. This function will make the
 * appropriate layers become visible without the pageflip flash.
 */
$(document).ready( function(){
  //alert('static configure');
/*  if ($.browser.msie) {
    // We do browser detection, not function detection, because we *know* IE supports fadein. It just doesn't support it *correctly*.
    $('.sf-menu').show();
    $('#nav1').show();
    $('#nav2').show();
    $('#nav3').show();
    $('#nav4').show();
    $('#nav5').show();
    $('#nav6').show();
    $('#nav7').show();
    $("#contentleft").show();
    $("#contentright").show();
    $('#pagelinks').show();
    $('.nextpage').show();
    $("ul.menu").show();
    $('.previouspage').show();
  }
  else {
    $('.sf-menu').fadeIn();
    $('#nav1').fadeIn();
    $('#nav2').fadeIn();
    $('#nav3').fadeIn();
    $('#nav4').fadeIn();
    $('#nav5').fadeIn();
    $('#nav6').fadeIn();
    $('#nav7').fadeIn();
    $("#contentleft").fadeIn();
    $("#contentright").fadeIn();
    $('#pagelinks').fadeIn();
    $('.nextpage').fadeIn();
    $("ul.menu").fadeIn();
    $('.previouspage').fadeIn();
  }
//alert('static ready');*/
});



