﻿  
function printpage() { window.print(); }

function cargarMouseOver() {
    imgsrc = $(this).attr("src");
    matches = imgsrc.match(/_on/);
    if (!matches) {
        imgsrcON = imgsrc.replace(/_off.gif$/ig, "_on.gif");
        $(this).attr("src", imgsrcON);
    }
}

function cargarMouseOut() {
    $(this).attr("src", imgsrc);
}


