All I know is what you tell me so I guess I know less than you on this one....
All I am trying to decipher is your entire page source and any attached java files (internal or external)
Unfortunately, when you provide only parts and pieces it is very hard to understand what your saying, and what your trying to get to....
I understand now that all you want to do is create a mouse over image using these images..
(and you tried to get code from somewhere else but couldn't understand how to incorporate it into your page)
It's easy now that I understand what you want.
Copy and paste this into notepad or even your WYSIWYG editor, then save it as hover
.js;
Code:
<!--
function MM_swapImgRestore() { //v3.0
var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}
function MM_preloadImages() { //v3.0
var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}
function MM_findObj(n, d) { //v4.01
var p,i,x; if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
if(!x && d.getElementById) x=d.getElementById(n); return x;
}
function MM_swapImage() { //v3.0
var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}
//--> Now, copy this as the links and paste this just before the page closing head tag (
<\head>)
Code:
<script language="javascript" src="hover.js"></script>
Now, place this where you want the image to display on the page;
Code:
<a href="https://www.google.com/accounts/ServiceLogin?service=mail&passive=true&rm=false&continue=http%3A%2F%2Fmail.google.com%2Fmail%2F%3Fui%3Dhtml%26zy%3Dl&ltmpl=default&ltmplcache=2" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('Image1','','http://enhskeyclub.editme.com/files/Java/button1over.png',1)"><img src="http://enhskeyclub.editme.com/files/Java/button1up.png" alt="Click here to go to gmail" name="Image1" width="124" height="25" border="0" id="Image1" /></a> View it here...
Cheers