// JavaScript Document
function displayinfo(pItem)
{
	switch(pItem)
	{
		case 0:
			hideL('cholo-info');
			break;
		case 1:
			showL('cholo-info');
			showL('p1'); hideL('p2'); hideL('p3'); hideL('p4');
			break;
		case 2:
			showL('cholo-info');
			hideL('p1'); showL('p2'); hideL('p3'); hideL('p4');
			break;
		case 3:
			showL('cholo-info');
			hideL('p1'); hideL('p2'); showL('p3'); hideL('p4');
			break;
		case 4:
			showL('cholo-info');
			hideL('p1'); hideL('p2'); hideL('p3'); showL('p4');
			break;
	}
		
}