//
$(function() {
	// Use this example, or...
//	$('a[@rel*=lightbox]').lightBox(); // Select all links that contains lightbox in the attribute rel
	// This, or...
//	$('#gallery a').lightBox(); // Select all links in object with gallery ID
	// This, or...
	$('a.lightbox').lightBox({
		imageLoading:	'/plato/hpdocs.nsf/lightbox-ico-loading.gif',		// (string) Path and the name of the loading icon
		imageBtnPrev: '/plato/hpdocs.nsf/lightbox-btn-prev.gif',			// (string) Path and the name of the prev button image
		imageBtnNext: '/plato/hpdocs.nsf/lightbox-btn-next.gif',			// (string) Path and the name of the next button image
		imageBtnClose: '/plato/hpdocs.nsf/lightbox-btn-close.gif',		// (string) Path and the name of the close btn
		imageBlank: '/plato/hpdocs.nsf/lightbox-blank.gif',			// (string) Path and the name of a blank image (one pixel)
	}); // Select all links with lightbox class
	// This, or...
//	$('a').lightBox(); // Select all links in the page
	// ... The possibility are many. Use your creative or choose one in the examples above
});
