$(function(){
	$.Lightbox.construct({
		
		auto_resize_percentage: PLB.auto_resize_percentage,
		
		slideshowAutoplay: PLB.slideshowAutoplay,
		slideshowAutoclose: PLB.slideshowAutoclose,
		slideshowInterval: PLB.slideshowInterval,
		
		// ...........................................................................................
		// Description: Should we show the helper text / hint ("Click to close, Hover to interact")	
		show_helper_text: PLB.show_helper_text,
		
	    // ...........................................................................................
	    // Description: Should we force the show of the image information?
		show_info: PLB.show_info,
		
	    // ...........................................................................................
	    // Description: Should we force the show of the extended image information?
		show_extended_info: PLB.show_extended_info,
		
	    // ...........................................................................................
	    // Description: Should we show the image download link?
		download_link: PLB.download_link,
		
	    // ...........................................................................................
	    // Description: Should we auto resize the image if it is too big?
		auto_resize: PLB.auto_resize,
		
	    // ...........................................................................................
	    // Description: Should we support colorBlend?
		colorBlend: PLB.colorBlend,
		
	    // ...........................................................................................
	    // Description: Should we support IE6
		ie6_support: PLB.ie6_support,
		
	    // ...........................................................................................
	    // Description: Should we show an IE6 upgrade message for IE6 users
		ie6_upgrade: PLB.ie6_upgrade,
		
	    // ...........................................................................................
	    // Description: Show or hide the linkback up the top right corner
		show_linkback: PLB.show_linkback,
		
	    // ...........................................................................................
	    // Description: How should scrolling be handled?
		auto_scroll: PLB.auto_scroll,
		
	    // ...........................................................................................
	    // Description: The total amount of milliseconds it takes to perform transitions between images.
		speed: PLB.speed,
		
	    // ...........................................................................................
	    // Description: The baseurl to use to auto include the required files
		baseurl: PLB.baseurl,
		
	    // ...........................................................................................
	    // Description: The javascript object that contains the locations of the requred files, used if you have renamed files.
		// Children: js.lightbox, js.colorBlend, css.lightbox, images.prev, images.next, images.blank, images.loading
		// files: PLB.files,
		
	    // ...........................................................................................
	    // Description: The javascript object that contains the text of various parts of the interface, used if you want to do translations.
		// Children: image, of, close, closeInfo, download, help.close, help.interact, about.text, about.title, about.link
		// text: PLB.text,
		text: {
    		close: PLB.textClose,
    		image: PLB.textImageSet,
    		of: PLB.textImageSetOf
		},
		
	    // ...........................................................................................
	    // Description: The javascript object that contains the key allocations for shortcuts, used if you want to remap the shortcuts
		// Children: close, prev, next
		// keys: PLB.keys,
		
	    // ...........................................................................................
	    // Description: The opacity of the overlay
		opacity: PLB.opacity,
		
	    // ...........................................................................................
	    // Description: The padding around the image, if you are using a custom padding you want to adjust this
		padding: PLB.padding,
		
	    // ...........................................................................................
	    // Description: What to look for in the rel tag of links and images to detect if it should have a lightbox
		rel: PLB.rel,
		
	    // ...........................................................................................
	    // Description: Should we do an initial rel scan to automatically detect lightboxes?
		auto_relify: PLB.auto_relify
			
	});
});