/*var _tmp = new Array();
_tmp[0] = 'upload/auta/6/foto/1_696cc66fe2fa501a3ea47803945078ffb61de486.jpg';
_tmp[1] = 'upload/auta/6/foto/2_3f3257c6e2e4ddde22e75cc43b440c7b0e3b7b83.jpg';
_tmp[2] = 'upload/auta/6/foto/3_7a84efa2e56c55329ec8c7bcacf47efb17524440.jpg';
_tmp[3] = 'upload/auta/1/foto/1.jpg';
_tmp[4] = 'upload/auta/5/foto/2.jpg';
_tmp[5] = 'upload/auta/5/foto/peugeot.jpg';
_tmp[6] = 'upload/auta/6/foto/1_696cc66fe2fa501a3ea47803945078ffb61de486.jpg';
_tmp[7] = 'upload/auta/6/foto/2_3f3257c6e2e4ddde22e75cc43b440c7b0e3b7b83.jpg';
_tmp[8] = 'upload/auta/6/foto/3_7a84efa2e56c55329ec8c7bcacf47efb17524440.jpg';
_tmp[9] = 'upload/auta/default.jpg';

var imgArray = new Array();
for (var i=0; i<_tmp.length; i++){
	imgArray[i] = new Image();
	imgArray[i].src = _tmp[i];
}*/

var mY=0;
var mYSpeed = 0;
var mYLoop = true;
var eId = "";

function mUp(id) {
	eId = id;
	mYLoop=true;
	mYSpeed=10;
	mYMove();
}

function mDown(id) {
	eId = id;
	mYLoop=true;
	mYSpeed=-10;
	mYMove();
}

function mYMove() {
	mY+=mYSpeed;
	el = document.getElementById(eId);
	// --
	
	var heightContent = (el.style.height.substring(0,(el.style.height.length-2)))*1;
	// --
	if (mY>0) {
		mY = 0;
		mYNoScroll();
	}else if (mY < (heightContent * -1)) {
		mY = (heightContent * -1);
		mYNoScroll();
	}
	// --
	el.style.top=mY+"px";
	// --
	if (mYLoop == true) {
		setTimeout(mYMove, 20);
	}
	//document.getElementById('test').innerHTML = 'mY='+mY+'<br />heightContent='+heightContent+'<br />el.style.top='+el.style.top;
}
function mYNoScroll() {
	mYLoop = false;
}

function YresetScroll(){
	mY = 0;
	for (j=1; j<25; j++) {
		el = document.getElementById("autoContent");
		if (el != null) {
			el.style.top=mY+"px";
		}
	}
}

function podmienFotke(indexFoto){
	var foto = document.getElementById('fotoBig');
	foto.src = imgArray[indexFoto].src;
	$('#fotoBig').show("explode", { pieces: 9 }, 500);
}
