function prisonerMenu(){
	var header = document.getElementsByTagName('head')[0];
	var link = document.createElement('link');
		link.rel = 'stylesheet';
		link.type = 'text/css';
		link.href = 'http://static.amctv.com/css/originals/the-prisoner-1960/1960-prisoner-video-nav.css';
		header.appendChild(link);
    var prisoner = jQuery('.the-prisoner').get(0);
	var mainLink = prisoner.getElementsByTagName('a')[0];
		mainLink.setAttribute('style','text-decoration:none');
		mainLink.onclick = function(){
			return false;
		}
	
    var newDiv = document.createElement('div');
    newDiv.className = 'link-container hide';
    var newAnchor = document.createElement('em');
    newAnchor.onclick = function(){window.location.href = "http://www.amctv.com/videos/the-prisoner/";}
    newAnchor.className = 'first-link';
    newAnchor.innerHTML = "AMC's Miniseries (2009)";
    var newAnchor2 = document.createElement('em');
    newAnchor2.onclick = function(){window.location.href = "http://www.amctv.com/videos/the-prisoner-1960s-video/";}
    newAnchor2.className = 'second-link';
    newAnchor2.innerHTML = 'Classic Series (1967)';
    newDiv.appendChild(newAnchor);
    newDiv.appendChild(newAnchor2);
    prisoner.appendChild(newDiv);
    prisoner.onmouseover = function(){
		//this.parentNode.style.height = '80px';
		newDiv.className = 'link-container';
    };
    prisoner.onmouseout = function(){
		//this.parentNode.style.height = 'auto';	
		newDiv.className = 'link-container hide';		
    }
}

//prisonerMenu();
