/**
	Initializes jQuery Lightbox preferences overrides
	Used by object_templates/gallery.html
*/

jQuery(function( $ ){
   
   $("#wg_picture_column a.thumbnail").lightBox({ 
		imageBlank: wwwroot + '/extensions/webgate_pictures/img/lightbox-blank.gif',
		imageLoading: wwwroot + '/extensions/webgate_pictures/img/lightbox-loading.gif',
		imageBtnClose: wwwroot + '/extensions/webgate_pictures/img/lightbox-close.gif',		
		imageBtnPrev: wwwroot + '/extensions/webgate_pictures/img/lightbox-prev.gif',
		imageBtnNext: wwwroot + '/extensions/webgate_pictures/img/lightbox-next.gif',
		overlayBgColor: '#000',
		containerResizeSpeed: 5,
		txtImage: '',
		txtOf: '/'
	});

   $("a.product_detail_thumb").lightBox({ 
		imageBlank: wwwroot + '/extensions/webgate_pictures/img/lightbox-blank.gif',
		imageLoading: wwwroot + '/extensions/webgate_pictures/img/lightbox-loading.gif',
		imageBtnClose: wwwroot + '/extensions/webgate_pictures/img/lightbox-close.gif',		
		imageBtnPrev: wwwroot + '/extensions/webgate_pictures/img/lightbox-prev.gif',
		imageBtnNext: wwwroot + '/extensions/webgate_pictures/img/lightbox-next.gif',
		overlayBgColor: '#000',
		containerResizeSpeed: 5,
		txtImage: '',
		txtOf: '/'
	});

});