<html>
<head>
<script type="text/javascript" language="javascript">
// we'll set the default "top" image here...
var topImgDef = "/images/profile/text_blank.gif"
var currBtnID = '';
function imgSwap(onoff, btnID, newImg, topImg){
if ((onoff=='on')&&(btnID == currBtnID)) return true;
currBtnID = (onoff == 'on') ? btnID:'';
document.getElementById(btnID).src = newImg;
document.getElementById('topPicture').src = topImg;
}
</script>
</head>
<body>
<img id="topPicture" src="images/profile/text_blank.gif">
<img id="btn1" src="images/profile/off_one.jpg" onmouseover="imgSwap('on',this.id,'images/profile/on_one.jpg','images/profile/text_one.gif');" onmouseout="imgSwap('off',this.id,'images/profile/off_one.jpg',topImgDef);">
<img id="btn2" src="images/profile/off_two.jpg" onmouseover="imgSwap('on',this.id,'images/profile/on_two.jpg','images/profile/text_two.gif');" onmouseout="imgSwap('off',this.id,'images/profile/off_two.jpg',topImgDef);">
<img id="btn3" src="images/profile/off_three.jpg" onmouseover="imgSwap('on',this.id,'images/profile/on_three.jpg','images/profile/text_three.gif');" onmouseout="imgSwap('off',this.id,'images/profile/off_three.jpg',topImgDef);">
</body>
</html>