This is what I have, the images will not load up
<script language="JavaScript" type="text/javascript">
<!-- Hide from older browsers
function SwitchImg()
{ //start
var rem, keep=0, store, obj, switcher=new Array, history=document.Data;
for (rem=0; rem < (SwitchImg.arguments.length-2); rem+=3) {
store = SwitchImg.arguments[(navigator.appName == 'Netscape')?rem:rem+1];
if ((store.indexOf('document.layers[')==0 && document.layers==null) ||
(store.indexOf('document.all[')==0 && document.all==null))
store = 'document'+store.substring(store.lastIndexOf('.'),store.length);
obj = eval(store);
if (obj != null) {
switcher[keep++] = obj;
switcher[keep++] = (history==null || history[keep-1]!=obj)?obj.src:history[keep];
obj.src = SwitchImg.arguments[rem+2];
} }
document.Data = switcher;
} //end
function RestoreImg()
{ //start
if (document.Data != null)
for (var rem=0; rem<(document.Data.length-1); rem+=2)
document.Data[rem].src=document.Data[rem+1];
} //end
// end hiding contents -->
</script>
then on the layer
I have
<div id="Design" style="position:absolute; width:126px; height:34px; z-index:7; left: 247px; top: 83px"><a href="design.html" onMouseOut="RestoreImg()" onMouseOver="SwitchImg('document.Design','document.Design','../images/designlinkover.gif')"><img src="../images/designlink.gif" name="Design" width="0" height="0" border="0"></a></div>
It's just there is absolutely nothing when there when the page loads up. And yes, the image links do work by themselves, meaning they are the right links..
<script language="JavaScript" type="text/javascript">
<!-- Hide from older browsers
function SwitchImg()
{ //start
var rem, keep=0, store, obj, switcher=new Array, history=document.Data;
for (rem=0; rem < (SwitchImg.arguments.length-2); rem+=3) {
store = SwitchImg.arguments[(navigator.appName == 'Netscape')?rem:rem+1];
if ((store.indexOf('document.layers[')==0 && document.layers==null) ||
(store.indexOf('document.all[')==0 && document.all==null))
store = 'document'+store.substring(store.lastIndexOf('.'),store.length);
obj = eval(store);
if (obj != null) {
switcher[keep++] = obj;
switcher[keep++] = (history==null || history[keep-1]!=obj)?obj.src:history[keep];
obj.src = SwitchImg.arguments[rem+2];
} }
document.Data = switcher;
} //end
function RestoreImg()
{ //start
if (document.Data != null)
for (var rem=0; rem<(document.Data.length-1); rem+=2)
document.Data[rem].src=document.Data[rem+1];
} //end
// end hiding contents -->
</script>
then on the layer
I have
<div id="Design" style="position:absolute; width:126px; height:34px; z-index:7; left: 247px; top: 83px"><a href="design.html" onMouseOut="RestoreImg()" onMouseOver="SwitchImg('document.Design','document.Design','../images/designlinkover.gif')"><img src="../images/designlink.gif" name="Design" width="0" height="0" border="0"></a></div>
It's just there is absolutely nothing when there when the page loads up. And yes, the image links do work by themselves, meaning they are the right links..