// JavaScript Document
function displayCount(num, total){
	element = document.getElementById('display_count');
	if(element.innerHTML == 'Displaying '+total+' of '+total+' Comments'){
		element.innerHTML = 'Displaying '+num+' of '+total+' Comments';
	}else {
		element.innerHTML = 'Displaying '+total+' of '+total+' Comments';
	}
}