Good day people,
I am new to this forum so apologies for any initial mistakes lol.
I am hoping that someone can help me on a little issue i have. I have an ebay ad. The ad uses j query to show the main animation banner. However, i have added images in the ad that uses visuallight box. The problem i have is that when you click on the image thumbnail, the image does not pop up. It just goes to a new page and shows the photo. I have checked the code and everything that i can think of seems correct.
If someone could assist me with this, i would be eternally grateful. The link to the test ad is: http://www.mcm-development.co.uk/test.html
Thank you in advance.
Mike5745 
Hi Mike5745. Welcome to the forums. 
Firstly, you are trying to link to the jQuery library several times, but you should only link to it once.
Bestides that, some of your JavaScript links are proken.
You have this a few times:
<script language="javascript" type="text/javascript">[COLOR="#FF0000"]include("jquery-1.6.1.min.js");[/COLOR]</script>
Whatever is supposed to happen with that bit in red, it’s not happening. You are better off just linking to the proper JS file, as you have on other lines.
That’s where you need to start, anyhow. Get your links right first, and then see where things are at. 
Hey Ralph,
Thank you for the welcome and the reply!
I thought it was something like that. I will have a look at the code again.
Mike5745
Hey i found the issue and fixed it!
All i had to do was remove one line of code :<script language=“javascript” type=“text/javascript”>include(“jquery-1.6.1.min.js”);</script>
Sorted!
Thank you for your help.
Mike5745
That’s great, Mike. You do have another one of those in there:
<script language="javascript" type="text/javascript">[COLOR="#FF0000"]include("imageswap.js");[/COLOR]</script>
which may come back to bit you later if you need that imageswap script. Just so you are aware. 