// lighbox pop-up images

function lightBox() {
	var month = arguments[0] + '/';
	var day = arguments[1] + '/';
	var fullURL = "http://www.roycemlee.com/public_html/roycemleev3.50/log/";
	for(var x = 2; x < arguments.length; x++) {
		//     take the common image name and create seperate paths
		var commonName = arguments[x];
		var thumbName = fullURL +  month + day + 'thumbnails/' + arguments[x];
		var imgName = fullURL + month + day + 'images/' + arguments[x];

		/*     this option is
		supposed to open
		a popup, and
		display the desired
		image  */
		document.write('<a href='+imgName+' rel="lightbox['+month+day+']" title="'+commonName+'"><IMG src="' + thumbName + '"alt="\''+commonName+'\'" ></A>');
	}
}

// -->

