﻿
function lightBoxInit(url, caption)
{
 //var imgLink = document.createElement('a');
 //imgLink.setAttribute('href', url);
 //imgLink.setAttribute('rel','lightbox');
 //imgLink.setAttribute('title',caption);
 //Lightbox.prototype.start(imgLink);
}

/*
sfHover = function() {
var elements = new Array("navbar1", "navbar2", "navbar3", "navbar4", "navbar5");

	var sfEls = new Array();

	for (var j = 0; j < elements.length; j++) {
		if (document.getElementById(elements[j])) {
			sfEls.push(document.getElementById(elements[j]).getElementsByTagName("LI"));
		}
	}

	for (var n = 0; n < sfEls.length; n++) {
		for (var i = 0; i < sfEls[n].length; i++) {

			sfEls[n][i].onmouseover = function() {
				this.className += " iehover";
			}

			sfEls[n][i].onmouseout = function() {
				this.className = this.className.replace(new RegExp(" iehover\\b"), "");
			}
		}
	}
}

if (window.attachEvent) window.attachEvent("onload", sfHover);

*/
