/* FUNCTIONS */
function ShowIllustration(Element, Id) {
    document.getElementById('Illustration').src = '../bin/Pages/Home/Illustrations/' + Id + '.gif';
    if (typeof(Element.onmouseout) != 'function') {
        Element.onmouseout = function() {
            document.getElementById('Illustration').src = '../bin/Pages/Home/Illustrations/Dome.gif';
        }
    }
}
