// Workaround for Internet Explorer 6.0 and some problem with CSS
// Script from Sebastian Siebert, 2008

	var browserName = navigator.appName;
	var browserVersion = navigator.appVersion;
	var resultBrowserVersion = browserVersion.match(/\bMSIE 6.0\b/i);

	function menuMouseOver(id,img)
	{
		if(browserName=='Microsoft Internet Explorer' && resultBrowserVersion.length==1)
		{
			//document.getElementById('aMouseOver'+id).style.backgroundImage = 'url('+img+')';
			document.getElementById('spanMouseOver'+id).style.backgroundImage = 'url('+img+')';
		}
	}
	
	function menuMouseOut(id,img)
	{
		if(browserName=='Microsoft Internet Explorer' && resultBrowserVersion.length==1)
		{
			//document.getElementById('aMouseOver'+id).style.backgroundImage = 'url('+img+')';
			document.getElementById('spanMouseOver'+id).style.backgroundImage = 'url('+img+')';
			
		}
	}
