var cmbIndex=0; initContactMe(); function initContactMe(){ var index = getIndex(); while( document.getElementById("contactmeimage") != null ){ cmbIndex = index; index++; document.getElementById("contactmeimage").setAttribute("id","contactmeimage_" + cmbIndex); document.getElementById("contactmeimage_" + cmbIndex).setAttribute("onmouseover", "showContactMe(" + cmbIndex + ");return false;"); document.getElementById("contactmeimage_" + cmbIndex).onmouseover = new Function("showContactMe('" + cmbIndex + "');");document.getElementById("contactmeimage_" + cmbIndex).setAttribute("name", "Kami Gray//Kamigray" ); } } function getIndex(){ var index = 0; while( document.getElementById("contactmeimage_" + index) != null ){ index++; } return index; }