var selPane = 1;
var itemsPerPane = 3;

homeScrollRight = function(elID, iCount)
{
	iPane = Math.ceil(iCount / itemsPerPane);
	
	if (selPane == iPane)
	{
		// do nothing
	
	} else {
	
		$("#" + elID).animate({"left": "-=240px"}, "slow");
		
		selPane++;
	}
}

homeScrollLeft = function(elID, iCount)
{
	iPane = Math.ceil(iCount / itemsPerPane);
	
	if (selPane == 1)
	{
		// do nothing
	
	} else {
	
		$("#" + elID).animate({"left": "+=240px"}, "slow");
		
		selPane--;
	}
}