﻿function img_mouseover(obj, img_over)
{
    obj.src = img_over;   
}

function img_mouseout(obj, img)
{
    obj.src = img;   
}