//_library/mod.js
//1.01, MC, 17/11/07

function mod(x,y){
	return x-Math.floor(x/y)*y
}
