function starMouseOver(starButton)
{
    starButton.src = starButton.src.replace("/stars/", "/stars/active/");
}
function starMouseOut(starButton)
{
    starButton.src = starButton.src.replace("/stars/active/", "/stars/");
}