// You do not need to change the following path if you installed WordPress into the root directory.
var lightbox_path = 'http://colectivonomada.com/fotoensayo/wp-content/plugins/lightbox-gallery/';

/*
este codigo lo maneja colectivonomada.com/scripts/fotoensayo.js

jQuery(document).ready(function () {




// If you make images display slowly, use following two lines;
//	var i = 0;
//	showImg(i);

	jQuery('a[rel*=lightbox]').lightBox();
	jQuery('.gallery1 a').lightBox({captionPosition:'gallery'});
	jQuery('.gallery1 a').tooltip({track:true, delay:0, showURL: false});
  
// Add these lines if you want to handle multiple galleries in one page.
// You need to add into a [gallery] shorttag. ex) [gallery class="gallery2"] 
//jQuery('.gallery2 a').lightBox({captionPosition:'gallery'});
//jQuery('.gallery2 a').tooltip({track:true, delay:0, showURL: false});
//jQuery('.gallery3 a').lightBox({captionPosition:'gallery'});
//jQuery('.gallery3 a').tooltip({track:true, delay:0, showURL: false});

/*
jQuery('.20090718 a').lightBox({captionPosition:'gallery'});
jQuery('.20090725 a').lightBox({captionPosition:'gallery'});
jQuery('.20090801 a').lightBox({captionPosition:'gallery'});
jQuery('.20090808 a').lightBox({captionPosition:'gallery'});
jQuery('.ciudad-magica-dormida a').lightBox({captionPosition:'gallery'});


});
*/
function showImg(i){
	if(i == jQuery('img').length){
		return;
	}else{
		jQuery(jQuery('img')[i]).animate({opacity:'show'},"normal",function(){i++;showImg(i)});
	}
}
