function menumOvr(src,clrOver,bgImage){ 
	if (!src.contains(event.fromElement)){ 
		src.style.cursor = 'hand'; 
		src.style.backgroundColor = clrOver; 
		//src.style.backgroundImage  = 'url(/img/' + bgImage + '.gif)';
		//src.style.backgroundRepeat  = 'no-repeat';
		//src.style.backgroundPosition  =  '128px';

	} 
} 
function menumOut(src,clrIn,bgImage){ 
	if (!src.contains(event.toElement)){ 
		src.style.cursor = 'default'; 
		src.style.backgroundColor = clrIn; 
		//src.style.backgroundImage  = 'url(/img/' + bgImage + '.gif)';
		//src.style.backgroundRepeat  = 'no-repeat';
		//src.style.backgroundPosition  =  '128px';
	} 
} 

function mOvr(src,clrOver,bgImage){ 
	if (!src.contains(event.fromElement)){ 
		src.style.cursor = 'hand'; 
		src.style.backgroundColor = clrOver; 
		src.style.backgroundImage  = 'url(/img/' + bgImage + '.gif)';
		src.style.backgroundRepeat  = 'no-repeat';
		src.style.backgroundPosition  =  '128px';
	} 
} 
function mOut(src,clrIn,bgImage){ 
	if (!src.contains(event.toElement)){ 
		src.style.cursor = 'default'; 
		src.style.backgroundColor = clrIn; 
		src.style.backgroundImage  = 'url(/img/' + bgImage + '.gif)';
		src.style.backgroundRepeat  = 'no-repeat';
		src.style.backgroundPosition  =  '128px';
	} 
} 
function mClk(src){ 
	if(event.srcElement.tagName=='TD')
		src.children.tags('A')[0].click();
}



function UrunOvr(src,clrOver,bgImage){ 
	if (!src.contains(event.fromElement)){ 
		src.style.cursor = 'hand'; 
		src.style.borderRightColor = clrOver;
		src.style.borderTopColor = clrOver;
		src.style.borderLeftColor = clrOver;
		//src.style.backgroundColor = clrOver; 
		//src.style.backgroundImage  = 'url(/img/' + bgImage + '.gif)';
		//src.style.backgroundRepeat  = 'no-repeat';
		//src.style.backgroundPosition  =  '128px';

	} 
} 
function UrunOut(src,clrIn,bgImage){ 
	if (!src.contains(event.toElement)){ 
		src.style.cursor = 'default'; 
		src.style.borderRightColor = clrIn;
		src.style.borderTopColor = clrIn;
		src.style.borderLeftColor = clrIn;

		//src.style.backgroundColor = clrIn; 
		//src.style.backgroundImage  = 'url(/img/' + bgImage + '.gif)';
		//src.style.backgroundRepeat  = 'no-repeat';
		//src.style.backgroundPosition  =  '128px';
	} 
} 
