function highimg(selfid, markerid) {
	document.getElementById(selfid).className='imgmarker imghover';
	document.getElementById(markerid).className='listing listhover';
}
function clearimg(selfid, markerid) {
	document.getElementById(selfid).className='imgmarker';
	document.getElementById(markerid).className= 'listing';
}

function highdes(selfid, proid) {
	document.getElementById(selfid).className= 'listing listhover';
	document.getElementById(proid).className='imgmarker imghover';
}
function cleardes(selfid, proid) {
	document.getElementById(selfid).className= 'listing';
	document.getElementById(proid).className='imgmarker';
}