function galleryLoadAjax (path) {
 $(window).load(function ()
          {
          $.ajax({ url: path, context: document.getElementById('galleries'), success: function(data){
          $(this).addClass("done");
          $('#galleries').html(data);
          $('#showGallery').show();

          $('.imgBig, .imgSmall').hover(
          function () {
          $(this).children('.imgPop').show();
          },
          function () {
          $(this).children('.imgPop').hide();
          }
          );
          Cufon.replace('#galleries h4', { fontFamily: 'Komika' });
          $(".gallery a").prettyPhoto({theme:'light_rounded'});
          }});
          $("#showGallery").click(function(){
          $(this).hide();
          $("#hideGallery").show();
          $("#galleries").animate({
          marginTop: "0"
          }, 1000 );
          });
          $("#hideGallery").click(function(){
          $("#galleries").animate({
          marginTop: "-520"
          }, 1000, function() {
          $("#hideGallery").hide();
          $("#showGallery").show();
          } );
          });
          });

}


function galleryAjax(path) {
        $(window).load(function ()
          {
          $.ajax({ url: path, context: document.getElementById('galleries'), success: function(data){
          $(this).addClass("done");
          $('#galleries').html(data);
          $('#showGallery').show();
          $('.imgBig, .imgSmall').hover(
          function () {
          $(this).children('.imgPop').show();
          },
          function () {
          $(this).children('.imgPop').hide();
          }
          );

          Cufon.replace('#galleries h4', { fontFamily: 'Komika' });
          $(".gallery a").prettyPhoto({theme:'light_rounded'});
          $('#firstClick').trigger('click');
          $("#hideGallery").show();
          $("#showGallery").hide();
          }});

          $("#showGallery").click(function(){
          $(this).hide();
          $("#hideGallery").show();
          $("#galleries").animate({
          marginTop: "0"
          }, 1000 );
          });

          $("#hideGallery").click(function(){
          $("#gallLoad").css('height','auto');
          $("#gallLoad").css('min-height','31px');
          $("#galleries").animate({
          marginTop: "-520"
          }, 1000, function() {
          $("#hideGallery").hide();
          $("#showGallery").show();
          } );
          });
          });

}


