
function showToc() {
	var e = window.event;
	document.getElementById("movingToc").style.display="block";
	document.getElementById("movingToc").style.position="absolute";
	document.getElementById("movingToc").style.left=e.offsetX+"px";
	document.getElementById("movingToc").style.top=e.offsetY+100+"px";
	//debugger;
}

function showCite(el) {
	var e = window.event;	
	document.getElementById("movingCite").style.display="block";
	document.getElementById("movingCite").style.position="absolute";
	document.getElementById("movingCite").style.left=e.clientX-80+"px";
	document.getElementById("movingCite").style.top=e.clientY-20+"px";
}

function showCitation() {
	document.getElementById("movingCite").style.display="block";
}


function showTimeline(el) {
	var e = window.event;
	document.getElementById("movingTimeline").style.display="block";
	document.getElementById("movingTimeline").style.position="absolute";
	document.getElementById("movingTimeline").style.left=el.offsetLeft+50+"px";
	document.getElementById("movingTimeline").style.top=el.offsetTop+100+"px";
	//debugger;
}

function hideTimeline() {
	document.getElementById("movingTimeline").style.display="none";
}

function colorMe(el, color) {
	el.style.background=color;
}

function copyCite () {
	if(window.clipboardData) {	
		var cite = document.getElementById(currentCite).innerHTML;
		window.clipboardData.setData("Text", cite);
		document.getElementById("copyConfirm").style.display = "block";
	}
}

function switchCite(id) {
	document.getElementById("copyConfirm").style.display = "none";
	document.getElementById('citeMLA').style.display = "none";
	document.getElementById('citeChicago').style.display = "none";
	document.getElementById('citeAPA').style.display = "none";
	document.getElementById('citeMLALink').style.color = "#00C";
	document.getElementById('citeChicagoLink').style.color = "#00C";
	document.getElementById('citeAPALink').style.color = "#00C";
	document.getElementById('citeMLALink').style.textDecoration = "underline";
	document.getElementById('citeChicagoLink').style.textDecoration = "underline";
	document.getElementById('citeAPALink').style.textDecoration = "underline";		
	document.getElementById('citeMLALink').style.fontWeight = "normal";
	document.getElementById('citeChicagoLink').style.fontWeight = "normal";
	document.getElementById('citeAPALink').style.fontWeight = "normal";	
	currentCite = id;
	currentLink = id+"Link";
	document.getElementById(currentCite).style.display = "block";
	document.getElementById(currentLink).style.color = "black";
	document.getElementById(currentLink).style.textDecoration = "none";
	document.getElementById(currentLink).style.fontWeight = "bold";	
}