/*
* JS/jQuery functions used by the 'PrintAndEmail.ascx' control
*/

$(document).ready(function () {
    // Adds print button click event callback
    $("a.ms-rteStyle-button-printer").wrapInner('<span/>').bind('click', function (event) {
        event.preventDefault();
        window.print();
    });

    // Sets email button href
    $("a.ms-rteStyle-button-email").attr("href", "mailto:?subject=" + escape(document.title) + '&body=' + window.location);
});

