//*************************************************************************
// Browser-side scripting for the home & portfolio page of henny.ca
//*************************************************************************

// Initialize the page at startup
function initPage() {
    imageId = 'thephoto';
    obj = document.getElementById(imageId);
    obj.style.visibility = 'visible';
    fadeVis(imageId,0);
}   

function debugMsg(msg) {
    document.getElementById('message').innerHTML = msg;    
}

