function replaceEmptyShadowboxClass( )
{
			aElements = document.getElementsByTagName("a");
    			for (i = 0; i < aElements.length; i++) {
        			if (aElements[i].hasAttribute("class") && aElements[i].className == "emptyClassToReplace") {
					aElements[i].setAttribute('rel', 'Shadowbox[74]');
				}
   			}
}

