//check IE V
function ie(){return navigator.appVersion.indexOf('MSIE 6')>-1?true:false;}
function hidemenu(){document.getElementById('divmenulist').style.visibility='hidden';}
//if !IE then use popmenu.
function appmenu(){
	var left=document.getElementById('headcontainer').offsetLeft+270;
	var obj=document.getElementById('divmenulist');
	obj.style.left=left+'px';
	obj.style.visibility='visible';
}
//set products menu content
if(ie()){
	var temhtml=document.getElementById('promenu_container').innerHTML;
	var frameheight=document.getElementById('promenu_container').offsetHeight-6;
	document.write('<iframe id="divmenulist" name="divmenulist" style="border:none" src="about:blank" width="138" height="'+(frameheight)+'"  scrolling="no" border="0" frameborder="0"></iframe>');
	var temobj=document.divmenulist;
	temobj.document.open();
	temobj.document.write('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><style type="text/css">body {background:#FCBF00;margin:0px;font-size:11px;font-family:Arial,Verdana,Helvetica,sans-serif;font-weight:bold;}a {color:#000000;text-decoration:none;width:136px;height:20px;line-height:20px;text-indent:5px; white-space:nowrap; overflow:hidden; font-weight:bold;display:block;}a:hover {color:#999999;background:#ffffff}</style><base target="_top"><body><div style="border:1px solid #814B00;">'+temhtml+'</div></body>');
	temobj.document.close();
}else{
	document.write('<div id="divmenulist">'+document.getElementById('promenu_container').innerHTML+'</div>');
}
document.getElementById('divmenulist').onmouseover=appmenu;
document.getElementById('divmenulist').onmouseout=hidemenu;

//------------------------------------------------------------------------------------------------------------------------------
//shopmenu
if(ie()){
	document.write('<iframe name="shopmenulist" style="border:none;" id="shopmenulist" width=138 height=42 id="shopframe" scrolling="no" border="0" frameborder="0" src="about:blank"></iframe>');
	var temobj=document.shopmenulist;
	temobj.document.open();
	temobj.document.write('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><style type="text/css">body {background:#FCBF00;margin:0px;font-size:11px;font-family:Arial,Verdana,Helvetica,sans-serif;font-weight:bold;}a {color:#000000;text-decoration:none;width:136px;height:20px;line-height:20px;text-indent:5px; white-space:nowrap; overflow:hidden; font-weight:bold;display:block;}a:hover {color:#999999;background:#ffffff}</style><body><div style="border:1px solid #814B00;"><a href="http://www.ergoshops.com/" target="_blank">USA</a><a href="http://www.a4shopping.de/" target="_blank">Germany</a></div></body>');
	temobj.document.close();
}
/*
function showshop(){
	var left=document.getElementById('headcontainer').offsetLeft+700;
	document.getElementById('shopmenulist').style.left=left+'px';
	document.getElementById('shopmenulist').style.visibility='visible';
}
function hideshopmenu(){
	document.getElementById('shopmenulist').style.visibility='hidden';
}

document.getElementById('shopmenulist').onmouseover=showshop;
document.getElementById('shopmenulist').onmouseout=hideshopmenu;
*/
