window.onload = function(){  
    onbodyload();     
}

function onbodyload(){
 
  document.getElementById('head_menu6').onmouseover= new Function("var random = Math.floor(Math.random()*569);var image = 'url(/assets/templates/tecvisuals/images/menu-bgani-up.gif?var='+ random +')';document.getElementById('head_menu6').style.background = image"); 
  document.getElementById('head_menu6').onmouseout= new Function("var random = Math.floor(Math.random()*569);var image = 'url(/assets/templates/tecvisuals/images/menu-bgani-down.gif?var='+ random +')';document.getElementById('head_menu6').style.background = image");   

  
  document.getElementById('head_menu12').onmouseover= new Function("var random = Math.floor(Math.random()*569);var image = 'url(/assets/templates/tecvisuals/images/menu-bgani-up.gif?var='+ random +')';document.getElementById('head_menu12').style.background = image"); 
  document.getElementById('head_menu12').onmouseout= new Function("var random = Math.floor(Math.random()*569);var image = 'url(/assets/templates/tecvisuals/images/menu-bgani-down.gif?var='+ random +')';document.getElementById('head_menu12').style.background = image");   
  

}

function checkAll(){
    for (var i=0;i<document.balanceForm.elements.length;i++)
    {
        var e=document.balanceForm.elements[i];
        if ((e.name != 'allbox') && (e.type=='checkbox'))
        {
            e.checked=document.balanceForm.allbox.checked;
        }
    }
}

function showEstimate(){
    document.getElementById('content_left_estimate_inner').style.display = "block";
    document.getElementById('content_left_estimate').style.background = "#87A018";
    document.getElementById('content_left_estimate').style.color = "#413d3d";

}
function hideEstimate(){
    document.getElementById('content_left_estimate_inner').style.display = "none";
    document.getElementById('content_left_estimate').style.background = "none";
}