// remap jQuery to $
(function($){})(window.jQuery);


function getImagesFromGallery(gallery_id, img_counter) {
  $("#gal_navigation li").removeClass("gal_selected");
  $("#result").html('<img src="/wp-content/themes/wky/images/loading.gif" class="loading" />');
  $.get(  
      "/wp-content/themes/wky/ajax_load_imgs.php?j=345&nggid=" + gallery_id,  
      {language: "php", version: 5},  
      function(responseText){  
        $("#result").html(responseText);
        wky_photo_slideshow();
        $("#gal_navigation li").eq(img_counter).addClass("gal_selected");
        $(".dontdisplay").removeClass("dontdisplay"); // shows prev and next arrows 
      },  
      "html"  
  );
}

/* trigger when page is ready */
$(document).ready(function (){

	// your functions go here
  jQuery('#gal_navigation').jcarousel();
});


/* optional triggers
$(window).load(function() {
});

$(window).resize(function() {
});
*/
