function clipMe(x) {
	divel=document.getElementById('teamshow');
	
	mL = ((x-1)*37)+1;
	if (mL<38) {mL=0};
	
	mR = mL+34;
	if (x==1 || x==20) {mR=mR+1};
	
	divel.style.clip="rect(0px,"+mR+"px,34px,"+mL+"px)";
	divel.style.visibility="visible"
}

