var hideEmailSent = function() {
    $("div.emailSent").hide('fast');
};
$(function(){
    $("body").height($(document).height());
    try {
        $("a[rel^=lightbox]").each(function(){
            $(this).attr('title', $("img", this).attr('alt'));
        });
        $("a[rel^=lightbox]").lightbox();
    } catch(e) {}
    
    if( $("div.emailSent") ) {
        setTimeout("hideEmailSent()", 10000);
    }
});
window.onload = function(){
    $("body").height($(document).height());
};
