$(function() {
	// Use this example, or...
	//$('a[@rel*=lightbox]').lightBox(); // Select all links that contains lightbox in the attribute rel
	// This, or...
	$('#productAdditionalImages a').lightBox({
		fixedNavigation:true,
  	overlayOpacity: 0.6,
	  imageLoading: '../images/lightbox-icon-loading.gif',
	  imageBtnClose: '../images/lightbox-btn-close.gif',
	  imageBtnPrev: '../images/lightbox-btn-prev.gif',
	  imageBtnNext: '../images/lightbox-btn-next.gif',
	  containerResizeSpeed: 350		
		}); // Select all links in object with gallery ID

	$('#productMainImage a').lightBox(); // Select all links in object with gallery ID

	// This, or...
	//$('a.lightbox').lightBox(); // Select all links with lightbox class
	// This, or...
});