

// UseDivInDiv by Michael Carrino, WRL Advertisting, 2010 03 26
// used for hover over functions on the mouseover and mouseout triggers to put the HTML content of one DIV into another.

function UseDivInDiv(useDiv,inDiv) {
    if (document.getElementById(inDiv) && document.getElementById(useDiv)) {
        document.getElementById(inDiv).innerHTML = document.getElementById(useDiv).innerHTML;
    }
}

