var cartheader_id = 'minicart';
var cartheader_popup_id = 'cartpopup';
var cartheader_info_id = 'cartinfo';

var cartheader_isinit = 0;

function cartheader_init() {  

    document.getElementById(cartheader_popup_id).style.display = 'none';
    document.getElementById(cartheader_id).className = 'inactive';
    
    if (document.getElementById(cartheader_info_id)) {
        document.getElementById(cartheader_info_id).style.display = 'block';  
    }
    
    if (!cartheader_isinit) {
        if (document.getElementById(cartheader_id).addEventListener)  {
            document.getElementById(cartheader_id).addEventListener("mouseover", cartheader_on, false);
            document.getElementById(cartheader_id).addEventListener("mouseout", cartheader_off, false);
        } else if (document.getElementById(cartheader_id).attachEvent) {
            document.getElementById(cartheader_id).attachEvent("onmouseover", cartheader_on);
            document.getElementById(cartheader_id).attachEvent("onmouseout", cartheader_off);
        }
        cartheader_isinit = 1;
    } 
}

function cartheader_on() {
    document.getElementById(cartheader_popup_id).style.display = 'block';
    document.getElementById(cartheader_info_id).style.display = 'none';
    document.getElementById(cartheader_id).className = 'active';
}

function cartheader_off() {
    cartheader_init();
}

