I believe the problem is due to your naming of the folder the file is held in. You have the file in a folder with the name /Joho site/ If I view the site in Firefox and I hover the mouse over the animation. I can see the full link to the animation as xx/Joho site/xxxxx
If I do the same in IE then I get xx/Joho%20site/xxxxxx
It is not good practice to have folders with a blank in the middle. You should use an underscore if you really must like this xx/Joho_site/xxxxx
also it would be better to always use lower case letters as this makes it easier to remember. If you use capitals on some folders and not on others then how do you ever remember which one it is using and it is very easy to make a mistake so I woul rename the folder as follows
xx/joho_site/xxxxx or xx/johosite/xxxx
You should not have spaces in web folder or file names, but %20 is the escaped character code for the space so this is not the cause of the problem. (You can also use upper and lower-case characters in file and folder names - just remember to use the same casing in any JavaScript.)
Remove the <noscript> tags - this is the most likely cause of the problem as it may cause IE to ignore the object contained within them.
Do not move the <object> into the script tag - this is HTML, not JavaScript.
__________________
"I'm here to save your life. But if I'm going to do that, I'll need total uninanonynymity." Me Myself & Irene.
Validate your HTML and CSS
There are also significant errors in your HTML which would cause browsers to fail to show it correctly (if at all) and to not run any JavaScript. Validate it here.
In particular, you have a closing <center> tag outside of your <body> tag, you've omitted (or at least it is not showing) the closing <html> tag, you are using the deprecated center tag, etc..
__________________
"I'm here to save your life. But if I'm going to do that, I'll need total uninanonynymity." Me Myself & Irene.
Validate your HTML and CSS
Ohhh so i have! oppsy!! will look into that as my next job! think i put the <centre> tag there to get me started before i started the css for rest of site so will get that linked in
Thanks all for advice, I have now got it working, maybe through changing file names or maybe moving the <noscript> tag! so yay!!
new code (without the issues Andrew just mentioned sorted yet!)