function changeImage()
{
document.images["Buy_Now"].src= "ordernow-h.png";
return true;
}
function changeImageBack() 
{
 document.images["Buy_Now"].src = "ordernow-u.png";
 return true;
}
function handleMDown()
{
 document.images["Buy_Now"].src = "ordernow-d.png";
 return true;
}
function handleMUp()
{
 changeImage();
 return true;
}