function statusChange()
{
window.status = "Just Right Coupons";
return true;
}

function statusChangeBack()
{
window.status = "Just Right Coupons";
return true;
}

window.onload = function()
{
var a = document.getElementsByTagName("a");

for (var i = 0; i < a.length; i++)
{
a[i].onmouseover = statusChange;
a[i].onmouseout = statusChange;
}
}