looking at your site in Firefox's firebug I get the following 3 errors.
Code:
illegal character
[Break on this error] window.mm_menu_0210154828_0 = new ...1000,-5,7,true,false,true,0,true,true);\n
orrellpa...apy.co.uk (line 25)
According to what I see you have not fixed the single quote issue on this line
Code:
window.mm_menu_0210154828_0 = new Menu(","#CCCCCC","#66CC66","#336600","center",3,0,1000,-5,7,true,false,true,0,true,true);
This is what is probably causing your error.
Code:
mmLoadMenus is not defined
orrellparktherapy.co.uk()()orrellpa...apy.co.uk (line 72)
[Break on this error] <script language="JavaScript1.2" type="text/javascript">mmLoadMenus();</script>
orrellpa...apy.co.uk (line 72)
I'm not sure why you even have this load menus call next to your table, everything should be in 1 <script> tag. Offending code is follows.
Code:
<body bgcolor="#F4FFE4" onload="MM_preloadImages('Images/rmrentaloffer.jpg')">
<script language="JavaScript1.2" type="text/javascript">mmLoadMenus();</script>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
Code:
MM_preloadImages is not defined
onload(load )
This is the same as the previous error.
Hope this helps
Wesley