window.onload = function() {
	document.getElementById('download').onclick = function() {
		pageTracker._trackPageview(this.href.substring(7 + this.href.substring(7).indexOf('/')));
	}
	document.getElementById('paperDetails').innerHTML = '<button id="bibtexButton" onclick="toggleBibtex();">Bibtex</button>'+document.getElementById('paperDetails').innerHTML;
	toggleBibtex();
}

function toggleBibtex() {
	if (document.getElementById('bibtex').style.display == 'none') {
		document.getElementById('bibtex').style.display = 'block';
	} else {
		document.getElementById('bibtex').style.display = 'none';
	}
}