function useFireAnt()
{
  var newwin = window.open('http://FireAnt.tv/subscribe?rss_url='+'http://www.channel102.net/rss/channel102.xml','subscribe','width=400,height=400,top=20,left=20,scrollbars=no,resizable=no,toolbar=no,directories=no,location=no,menubar=no,status=no');
}

var startList = function() {
if (document.all&&document.getElementById) {
var navRoot = document.getElementById("navlist");
for (i=0; i<navRoot.childNodes.length; i++) {
var node = navRoot.childNodes[i];
if (node.nodeName=="LI") {
node.onmouseover=function() {
this.className+=" over";
  }
  node.onmouseout=function() {
  this.className=this.className.replace(" over", "");
   }
   }
  }
 }
}
window.onload=startList;