$(document).ready(function(){








function pausecomp(millis)
{
	var date = new Date();
	var curDate = null;
	do { curDate = new Date(); }
	while(curDate-date < millis);
}



});// end jquery

	function addBigLink(thisLink){
		$("#TB_Count").insertAfter("<a id='big-version' href='" + thisLink + "'>Big Version</a>")
    }


	function toggleComments() {
		var commentDiv = document.getElementById("comments");
		if (commentDiv.style.display == "block") {
			commentDiv.style.display = "none";
		} else {
			commentDiv.style.display = "block";
		}
	}