var color = '';

function mOver(id,cor) {
	//document.all[id].style.background = '#E0E0E0';
	//document.all[id].style.color  = '#333333';
	//document.all[id].style.cursor = 'hand';
}

function mOut(id,cor) {
	//document.all[id].style.background = cor;
	//document.all[id].style.color = '#000000';
}
function mClk(src) {
	src.children.tags('A')[0].click();
}

function mOvr(src,clrOver) {
		if (!src.contains(event.fromElement))
			{
				src.style.cursor = 'hand';
			}
	}

function mOut(src,clrIn) {
		if (!src.contains(event.toElement))
			{
				src.style.cursor = 'default';
			}
	}

function mclk(src) {
 		 self.location = src
	}

