addLoadListener(frmStatInit); function frmStatInit () { $('expoAfrica').onmouseover=function() { setExpoImg('africa'); } $('expoAsia').onmouseover = function() { setExpoImg('asia'); } $('expoAus').onmouseover = function() { setExpoImg('australia'); } $('expoEurope').onmouseover=function() { setExpoImg('europe'); } $('expoSAm').onmouseover = function() { setExpoImg('south-america'); } $('expoNAm').onmouseover = function() { setExpoImg('north-america'); } $('expoAll').onmouseover = function() { setExpoImg('international'); } $('expoAfrica').onmouseout=function() { resetExpoImg(); } $('expoAsia').onmouseout = function() { resetExpoImg(); } $('expoAus').onmouseout = function() { resetExpoImg(); } $('expoEurope').onmouseout=function() { resetExpoImg(); } $('expoSAm').onmouseout = function() { resetExpoImg(); } $('expoNAm').onmouseout = function() { resetExpoImg(); } $('expoAll').onmouseout = function() { resetExpoImg(); } } function setExpoImg(continent) { $('expoMapImg').src = 'http://www.fdsfranchise.com/images/expo/expo-'+continent+'.gif'; } function resetExpoImg() { $('expoMapImg').src = 'http://www.fdsfranchise.com/images/expo/franchise-exhibition-map.gif'; }