function overIcon(icIt){ 
icIt.style.border='0px solid #063032';icIt.style.backgroundColor='#063032'; icIt.style.cursor='pointer';icIt.style.cursor='hand'; 
} 

function outIcon(icIt){icIt.style.border='0px solid #063032'; icIt.style.backgroundColor='#063032'; 
} 

function switchDiv(div_id){
var style_sheet=getStyleObject(div_id);
if (style_sheet){
hideAll();
changeObjectVisibility(div_id,"visible");
}else{
alert("arabeclavier.com");
}
}

function hideAll(){
changeObjectVisibility("sp","hidden");
}

function getStyleObject(objectId){
if(document.getElementById && document.getElementById(objectId)){
return document.getElementById(objectId).style;
}else if (document.all && document.all(objectId)){  
return document.all(objectId).style;
} else if (document.layers && document.layers[objectId]) { 
return document.layers[objectId];
}else{
return false;
}
}

function changeObjectVisibility(objectId, newVisibility){
var styleObject=getStyleObject(objectId);
if(styleObject){
styleObject.visibility = newVisibility;
return true;
}else{
return false;
}
}

function jumpMenu(targ,selObj,restore){
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}