// JavaScript Document

function mainMenuMouseOver(obj){
	alert('over');
	if (navigator.appName.indexOf('Explorer') != -1){
		alert('ie');
		obj.firstChild.style.padding='0 8px 0 0';
		obj.firstChild.style.backgroundImage='url(../images/pfeil_hauptnavi.gif)';
		obj.firstChild.style.backgroundPosition = 'right 6px';
		obj.firstChild.style.backgroundRepeat = 'no-repeat';
	}else{
		alert('anderes');
		obj.firstChild.nextSibling.style.padding='0 8px 0 0';
		obj.firstChild.nextSibling.style.backgroundImage='url(../images/pfeil_hauptnavi.gif)';
		obj.firstChild.nextSibling.style.backgroundPosition = 'right 6px';
		obj.firstChild.nextSibling.style.backgroundRepeat = 'no-repeat';
	}
}
function mainMenuMouseOut(obj){
	if (navigator.appName.indexOf('Explorer') != -1){
		obj.firstChild.style.padding='0 0 0 0';
		obj.firstChild.style.background='none';
	}else{
		obj.firstChild.nextSibling.style.padding='0 0 0 0';
		obj.firstChild.nextSibling.style.background='none';
	}
}

