// Sliding Box Foto, 2008. Written by MatProject, http://www.matproject.com, All rights reserved.
// If You want use this code with Your own project You must copy this comments.
var BoxRotateImgPath = 'http://www.piekna.com.pl/main_box/';
var BoxRotateCount = BoxRotateImages.length;
var BoxRotateNumImg = 0;
	
function BoxMFotoRotate() {
	BoxRotate = document.getElementById('BoxMFoto');
	BoxRotate.style.background = "url('"+BoxRotateImgPath+BoxRotateImages[BoxRotateNumImg]+"') no-repeat #000000";
	if (BoxRotateNumImg < BoxRotateCount-1) BoxRotateNumImg += 1;
		else BoxRotateNumImg = 0;
}
