Ok Never mind I figured out a way to make it work! Lol figures isnt it always that way what I did was change the following
Quote:
function changeImages() {
if (document.images && (preloadFlag == true)) {
for (var i=0; i<changeImages.arguments.length; i+=2) {
document[ changeImages.arguments[i]].src = changeImages.arguments[i+1];
}
}
}
|
to this
Quote:
function changeImages() {
if (document.images && (preloadFlag == true)) {
for (var i=0; i<changeImages.arguments.length; i+=2) {
changeImages.arguments[i].src = changeImages.arguments[i+1];
}
}
}
|
removeing the red and then changing the following in the body
Quote:
<A Href="#" OnMouseOver="changeImages(document.Screen, 'Images/Screen-Bar-1_over.gif'); window.status='Services'; return true;"
<A Href="#" OnMouseOver="changeImages('Screen', 'Images/Screen-Bar-1_over.gif'); window.status='Services'; return true;"
|
and removing the '' around the screen
I dont know why but hey it works!
Now If I can only figure out why
Quote:
onResize="
if(ns||ie||w3) {
location.reload();
}"
|
doesnt work in opera??? Any thoughts