  var GalleryNavigator;
  var GalleryConfiguration;
  
  $(document).ready(function() {
    
    var Anchor = $.url.attr("anchor");
    
    if (GalleryConfiguration) {
      GalleryNavigator = new JSGallery($, GalleryConfiguration);
      
      if (Anchor != null) {
        GalleryNavigator.Init(parseInt(Anchor));
      }
      else {
        GalleryNavigator.Init(0);
      }
    }
    
  });
