window.onload = function(){
		var options = {
			displayNav:         true,
			keysClose:          []// nothing
		};
		loadLinks();
		Shadowbox.init(options);
		Shadowbox.setup();
}

function loadLinks(){
		var a = document.getElementsByTagName('a'), rel;
            for(var i = 0, len = a.length; i < len; ++i){
				content = a[i].innerHTML + "";
				shadowbox_config = "shadowbox;height=450;width=700";
				if (content == "Contact Information"){
					a[i].setAttribute('rel',shadowbox_config);
					a[i].setAttribute('title','Contact Info');
				}
			}
}		

