$(document).ready(function() {

// form field selected
$('#ContactName').focus();

// bitmap mouseover functions
$("input.contact").mouseover(function() {
imgsrc = $(this).attr("src");
matches = imgsrc.match(/_over/);
if (!matches) {
	imgsrcON = imgsrc.replace(/.gif$/ig,"_over.gif");
	$(this).attr("src", imgsrcON);
}
});

$("input.contact").mouseout(function() {
	$(this).attr("src", imgsrc);
});

$("input.contact").each(function() {
	rollsrc = $(this).attr("src");
	rollON = rollsrc.replace(/.gif$/ig,"_over.gif");
	$("<img>").attr("src", rollON);
});

});
