function injectHtml() {
	var leftNavMenuItem = document.getElementById("categoryDetailLink");
	var leftNav = leftNavMenuItem.parentNode.parentNode.parentNode.parentNode.parentNode;
	var customMenu = document.createElement("div");
	customMenu.className = "component leftNavCustomLinks";
	leftNav.parentNode.insertBefore(customMenu, leftNav);
	customMenu.innerHTML = getCustomMenuHtml();
}

function getCustomMenuHtml () {
	var html = '<div class="componentHeader">Special Features</div>';
	html = html + '<div class="componentBody">';
	html = html + '<div class="componentSkinWrapper">';
	html = html + '<ul class="ourMovies">';
	html = html + '<li><a id="CustomMenu_1" href="http://features.unzippedtv.com/index.aspx" title="Features">Features</a></li>';
	html = html + '<li><a id="CustomMenu_2" href="http://features.unzippedtv.com/dreamteam/index.aspx" title="Dream Team">Dream Team</a></li>';
	html = html + '<li><a id="CustomMenu_3" href="http://features.unzippedtv.com/timandroma/index.aspx" title="Tim &amp; Roma">Tim &amp; Roma</a></li>';
	html = html + '<li><a id="CustomMenu_4" href="http://features.unzippedtv.com/studios/index.aspx" title="Featured Studios">Featured Studios</a></li>';
	html = html + '</ul>';
	html = html + '</div></div><div class="componentFooter"><p></p></div>';
	
	return html;
}


//to run after page has loaded, use the following:
function addLoadEvent(func) {
  var oldonload = window.onload;
  if (typeof window.onload != 'function') {
    window.onload = func;
  } else {
    window.onload = function() {
      if (oldonload) {
        oldonload();
      }
      func();
    }
  }
}

addLoadEvent(injectHtml);

