
var bMainPageLoaded = false;

function mainMenuImageLoaded(){
      checkIfStartMainContent();


}
function checkIfStartMainContent(){
    if (bMainPageLoaded)
      startMainContent();
    else
    setTimeout(checkIfStartMainContent,100);
}

var curA = 0.0;
function pollyUpMM(){

      document.getElementById("mmkontent").style.opacity = Math.round(curA*10)/10;
      document.getElementById("mmkontent").style.filter="alpha(opacity="+curA*100+")";
      curA+=0.1;
      if (curA>1)
       clearInterval(hhhh);


}

    var hhhh;
function startMainContent(){
    document.getElementById("mmkontent").style.display="block";
    document.getElementById("mmkover").style.display="none";
    hhhh = setInterval("pollyUpMM()",50);
    
}
    

function mainPageLoaded(){
    bMainPageLoaded = true;
    

}
