$(document).ready(function(){
	setCounts();
});

var chCount = 48;
var bkCount = 114;
var pvCount = 9;
var blCount = 1;

function setCounts()
{
	chCounts();
	pvCounts();
	bkCounts();
	blCounts();
	totalCounts();
	otherCounts();
}

function chCounts()
{
	$(".chCount").html(chCount + "&nbsp;");
}

function pvCounts()
{
	$(".pvCount").html(pvCount + "&nbsp;");
}

function blCounts()
{
	$(".blCount").html(blCount + "&nbsp;");
}

function bkCounts()
{ 
	$(".bkCount").html(bkCount + "&nbsp;");
}

function otherCounts()
{
	var otherCount = pvCount + blCount
	$(".otCount").html(otherCount + "&nbsp;");
}

function totalCounts()
{
	var total = chCount + bkCount + pvCount + blCount;
	$(".ttlCount").html(total + "&nbsp;");
}
