What the best image rollover script

i am looking for one that is Recognised in all if not the main internet borwsers.

thanks to anyone who can help.:+)

you ever try google dude? or any other search engine? there are thousands of HTML/Javascript tutorials out there, just do a search of what you want…

read the title.

WHATS THE BEST ONE!!!

i got loads i just want to no WHAT THE BEST ONE!!!

I’m not sure what software you use, but I’ve found that the rollover code that Dreamweaver creates is reliably cross-browser compliant on generation 4+ browsers.

no need to flip out, chris…

YOU CAN FIND THE BEST ONE ON GOOGLE U **** ****** ****
****!!!

…just kidding.

:bounce: run away
it’s ok i found one

here i will post it:

To begin with you need to load the javascript into a page in the head section of your page. If you place the code into a file called rollover.js then you would include the file as follows

<head>
	<title>..</title>
	<script src="rollover.js" type="text/javascript"></script>	
</head>

Next you will need to add the attribute class=“imgover” to any image in your document that requires a mouseover effect to be trigger.

<img src="sample.jpg" alt="Some Image" class="imgover">

Finally, for any image in your document you will need to create a rollover state for it, the only requirements for this image is that it is named exactly the same as the original image, but it needs _o on the end of the name. The image should also be in the same directory as the original and should be of the same type. So for example you would have sample.jpg and sample_o.jpg files in the same directory.