// JavaScript Document



function mOvr(src,clrOver) {
	src.style.cursor = 'hand';
	src.style.cursor = 'pointer';
	src.style.backgroundColor = clrOver;
}

function mOut(src) {
	src.style.cursor = 'default';
	src.style.backgroundColor ="transparent";
}

function mClk(src) {
	window.location=src;
}


