function change(id, type) {
    ID = document.getElementById(id);
    alert(type);
    if (ID.style.display == "") {
        ID.style.display = "none";
        //alert('bla');
    } else {
        ID.style.display = "";
        //alert('bla2');
    }
}

// rollover image swapping
function imgSwap(elmnt) {
    $src_temp = $(elmnt).getAttribute('src_ro');
    $(elmnt).setAttribute('src_ro', $(elmnt).getAttribute('src'));
    $(elmnt).setAttribute('src', $src_temp);
}
