$(document).ready(function()
{
$("#secondary a").mouseover(function ()
{
$rollsrc = $(this).children("img").attr("src");
$matches = $rollsrc.match(/_active.png$/);
if (!$matches) {
$rollON = $rollsrc.replace(/.png$/,"_active.png");
$(this).children("img").attr("src", $rollON);
}
});

$("#secondary a").mouseout(function ()
{
$(this).children("img").attr("src", $rollsrc);
});
});
