currPath = 'slidewindow/';  // Needed by slidewindow.js

   window.onload = function () {
	prepare();
}

function prepare() {
	 if( document.getElementById ) {
	 	if( document.getElementById( 'gallery' )) {
	 		var gallery = document.getElementById( 'gallery');
	 		var links = gallery.getElementsByTagName('a');
	 		for( var i=0; i<links.length; i++ ) {
	 			links[i].onclick = function() {
	 				return showSlideWindow(this);
	 				}
	 			}
	 		}
	 	}
	 }
