//*** MOST VIEWED/EMAILED/COMMENTED BOX ***
function changePopularRight(i) {
	x = "/images/dio/mostPopularRight/most" + i + "edOn.jpg";
	y = "most" + i + "edButton";
	z = "most" + i + "edRight";  
	document.getElementById('mostViewedRight').style.display = "none";
	document.getElementById('mostEmailedRight').style.display = "none";
	document.getElementById('mostCommentedRight').style.display = "none";
	document.getElementById(z).style.display = "block";
	document.getElementById('mostViewedButton').src = "/images/dio/mostPopularRight/mostViewedOff.jpg";
	document.getElementById('mostCommentedButton').src = "/images/dio/mostPopularRight/mostCommentedOff.jpg";
	document.getElementById('mostEmailedButton').src = "/images/dio/mostPopularRight/mostEmailedOff.jpg";
	document.getElementById(y).src = x;
	
}

var popularCounter = 1;