function imgOver(img, type)
{
	img.src = 'images/' + img.name + '-over.' + type; img.style.cursor = 'hand'; img.style.cursor = 'pointer';
}	

function imgOut(img, type)
{
	img.src = 'images/' + img.name + '.' + type; img.style.cursor = 'default'; img.style.cursor = 'default';
}

