function mouseoverjpg()
{
    d.dom.src="/images/contact/senditover.jpg";
}

function mouseoutjpg()
{
    d.dom.src="/images/contact/sendit.jpg";
}

var d = new dcmobj();


function dcmobj(){}

function init()
{
d.dom = document.getElementById('sendbutton');
d.dom.onclick = sendit;
d.dom.onmousedown = mouseoverjpg;
d.dom.onmouseup = mouseoutjpg;
}

