// JavaScript Document

prepare= function() {

	if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)){ //test for MSIE x.x;
		var ieversion=new Number(RegExp.$1) // capture x.x portion and store as a number
		if (ieversion<6) {
			return; // prevents execution on IE 5, which JQuery doesn't support
		}
	}
	
	// Creates any lightboxes on the page
	$("a.lightbox").lightBox({overlayBgColor: '#000',
							 overlayOpacity: 0.6,
							 imageLoading: 'zapit/_images/lightbox/loading.gif',
							 imageBtnClose: 'zapit/_images/lightbox/close.gif',
							 imageBtnPrev: 'zapit/_images/lightbox/prev.gif',
							 imageBtnNext: 'zapit/_images/lightbox/next.gif',
							 imageBlank: 'zapit/_images/lightbox/blank.gif'
	});
	$("a.lightbox2").lightBox({overlayBgColor: '#000',
							 overlayOpacity: 0.6,
							 imageLoading: 'zapit/_images/lightbox/loading.gif',
							 imageBtnClose: 'zapit/_images/lightbox/close.gif',
							 imageBtnPrev: 'zapit/_images/lightbox/prev.gif',
							 imageBtnNext: 'zapit/_images/lightbox/next.gif',
							 imageBlank: 'zapit/_images/lightbox/blank.gif'
	});

}

prepare();
