goodBrowser = document.getElementById;

if (goodBrowser){

  // produkter menu

document.write('<table class="dropdown" id="subscribe" onmouseover="showMenu(\'subscribe\');" onmouseout="hideMenu(\'subscribe\');" style="position:absolute; left: 396; top: 90; visibility: hidden;" cellspacing="0" cellpadding="3">');
document.write('<tr><td colspan="3"><img src="images/spacer.gif" width="10" height="1"></td></tr>');
document.write('<tr><td><a href="http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewPodcast?id=129688012&s=143457" class="dropdown">iTunes</a></td>');
document.write('<td><img src="images/spacer.gif" width="4" height="1"></td>');
document.write('<td><a href="http://feeds.feedburner.com/podbrew" class="dropdown">Feedburner</a></td></tr>');
document.write('</table>');
  
  // set the rollover on the faresedler link
  
  triggerRef = document.getElementById("subscribelink")
  
  if (triggerRef!=null){
    triggerRef.onmouseover = function(){showMenu('subscribe');}
    triggerRef.onmouseout = function(){hideMenu('subscribe');}
  }
	
}


function showMenu(menuName){
  
 if(goodBrowser){
   
   menuRef = document.getElementById(menuName);
   
   if(menuRef!=null && menuRef.style!=null && menuRef.style.visibility!=null){
      menuRef.style.visibility = "visible";
   }
   
 } 
  
}

function hideMenu(menuName){
  
 if(goodBrowser){
   
   menuRef = document.getElementById(menuName);
   
   if(menuRef!=null && menuRef.style!=null && menuRef.style.visibility!=null){
      menuRef.style.visibility = "hidden";
   }
   
 } 
  
}