// ACTION AFF-PAGE PUBLIQUE GALLERIE INLINE LIGHTBOX
// C : 06/03/2009 (origine : presentation V 0.3 Rev 6)

// ** Dependance Jquery
// lightbox

// 09/07/09 - Lightbox Auto V3
// upgrade pour avoir plusieurs galeries a la fois

// ** Lightbox **
bob = $('a[class=lightbox]');
jo = $('a[class=lightbox_1]');

if (bob.length > 0)
	bob.lightBox({fixedNavigation:true});
else if (jo.length > 0) {
	for (i = 1; i <= jo.length; i++) {
		$('a[class=lightbox_' + i + ']').lightBox({fixedNavigation:true});
	}
}

