LINK COLOR CHANGE WHEN POINTED ON IT.
Note: This script only works with Microsoft Internet Explorer 4x. If you are using Internet Explorer 4x then point on any of links on this page and the link's color will change. If you are not using Internet Explorer 4 you can download it right now for free.
SCRIPT SOURCE
<SCRIPT LANGUAGE="JScript">
<!--
ua=navigator.userAgent;
v=navigator.appVersion.substring(0,1);
if ((ua.lastIndexOf("MSIE")!=-1) && (v='4')) {
document.onmouseover = highlight;
document.onmouseout = unhighlight;
}
function highlight() {
src = event.toElement;
if (src.tagName == "A") {
src.oldcol = src.style.color;
src.style.color = "#0000FF";
}
}
function unhighlight() {
src=event.fromElement;
if (src.tagName == "A") {
src.style.color = src.oldcol;
}
}
//-->
</script>
To use this script, Just change the code of color (#0000ff) in line 13.