function ShortWindow(x,ww,wh){
  var sc="yes";
  if(x.substr(1,5)=="photo") sc="no";
  var l=(screen.width-ww)/2;
  var h=(screen.height-wh)/2;
  var a=window.open(x,"smallwindow","left="+l+",width="+ww+", height="+wh+",top="+h+", status=no, toolbar=no, menubar=no, resizable=yes, scrollbars="+sc);
  a.focus();
  return false;
}

    function functHideParent(index){
        if (document.getElementById("parent" + index).className == "parent_active"){
            document.getElementById("parent" + index).className="";
            document.getElementById("childMenu" + index).style.display ="none";
        }
        else {       
            document.getElementById("parent" + index).className="parent_active";
            document.getElementById("childMenu" + index).style.display ="block";
        }         
    }    
    function functHideChild(indexParent, indexChild){
        if (document.getElementById("child" + indexChild).className == "child_active"){
            document.getElementById("child" + indexChild).className="";
            document.getElementById("babyMenu" + indexChild).style.display ="none";
        }
        else {
            document.getElementById("child" + indexChild).className="child_active";
            document.getElementById("babyMenu" + indexChild).style.display ="block";
        }
        functHideParent(indexParent)
    }    



$(document).ready(function(){

    $('.box').prepend('<div class="box-c"><em class="ctl"><b>&bull;</b></em><em class="ctr"><b>&bull;</b></em></div>');
    $('.box').append('<div class="box-c"><em class="cbl"><b>&bull;</b></em><em class="cbr"><b>&bull;</b></em></div>');
    
});
