function navig(){

	var IE6 = false;

	var strChUserAgent = navigator.userAgent; 
	var intSplitStart = strChUserAgent.indexOf("(",0); 
	var intSplitEnd = strChUserAgent.indexOf(")",0); 
	var strChMid = strChUserAgent.substring(intSplitStart, intSplitEnd); 

	if(strChMid.indexOf("MSIE 6") != -1) IE6 = true;

	if( IE6 ){
		document.getElementById('menuEvent').style.marginTop = '-2';
		document.getElementById('menuLight').style.marginTop = '-2';
	//	document.getElementById('stefuPX').style.marginTop = '-2';
		document.getElementById('middle_MenuLeft_red').style.marginTop = '-2';
		document.getElementById('middle_MenuLeft_blue').style.marginTop = '-2';
	}
}

function specificNavig(id, selector, value){
	var IE6 = false;

	var strChUserAgent = navigator.userAgent; 
	var intSplitStart = strChUserAgent.indexOf("(",0); 
	var intSplitEnd = strChUserAgent.indexOf(")",0); 
	var strChMid = strChUserAgent.substring(intSplitStart, intSplitEnd); 

	if(strChMid.indexOf("MSIE 6") != -1) IE6 = true;
	if( IE6 ){
		document.getElementById(id).style.selector = value;
	}
}

