Two problems, where you have:
Code:
onMouseOver="MM_displayStatusMsg(' - - - The Barn Club - - - Penzance's Most Popular Nightspot - - - ');return document.MM_returnValue"
in your body tag, you need to escape (with a slash) the apostrophe in Penzance's, like so:
Code:
onMouseOver="MM_displayStatusMsg(' - - - The Barn Club - - - Penzance\'s Most Popular Nightspot - - - ');return document.MM_returnValue"
Also, since you have another onload event, remove this line from the external script file (motiongallery.js - at the bottom):
Code:
window.onload=fillup
and add to your onload event in the body tag, like so:
Code:
onLoad="MM_preloadImages('images/menu_wasson2.gif','images/menu_partynights2.gif','images/menu_photos2.gif','images/menu_newsjobs2.gif','images/menu_contact2.gif');fillup();"
Bookmarks