


$(document).ready(function(){ 
    $("ul.sf-menu").superfish({ 
        autoArrows:  false,
        dropShadows: false,
        pathLevels:    1,
        pathClass:  'current' 
    });


    $('.historical a').lightBox();
$('a.lightbox').lightBox(); // Select all links with lightbox class
});

$(document).ready(function(){
  // Reset Font Size
  var originalFontSize = 14;
 $(".biga2").bind("click", function(){
   $('#content').css('font-size', originalFontSize);
  });
  // Increase Font Size
 $(".biga1").bind("click", function(){
      var currentFontSize = $('#content').css('font-size');
     var currentFontSizeNum = parseFloat(currentFontSize, 10);
        var newFontSize = 12.0;
    $('#content').css('font-size', newFontSize);
    return false;
 });
  // Decrease Font Size
 $(".biga3").bind("click", function(){
      var currentFontSize = $('#content').css('font-size');
     var currentFontSizeNum = parseFloat(currentFontSize, 10);
        var newFontSize = 17;
    $('#content').css('font-size', newFontSize);
    return false;
  });

});
