

var gcur=0, gcur_old=0;
function ShowGal(){
	//$('#mgallery_link').html("<a href='images/upload/"+gimgs[gcur]+"' class='highslide noline' onclick=\"return hs.expand(this, {captionId: 'im1'} , '"+gnms[gcur]+"')\"><img src='show_foto.php?File=images/upload/"+gimgs[gcur]+"&Width=450&Height=337'></a>");
	
	/*$('#mgallery'+gcur_old).animate({opacity: 0}, 1000, function(){
		$('#mgallery'+gcur_old).css('display', 'none');
		$('#mgallery'+gcur).css('display', 'block');
		$('#mgallery'+gcur).animate({opacity: 1}, 1000, function(){})
	})*/
	$('#mgallery'+gcur_old).animate({width: 0}, 1000, function(){
		$('#mgallery'+gcur_old).css('display', 'none');
		$('#mgallery'+gcur).css('display', 'block');
		$('#mgallery'+gcur).animate({width: 450}, 1000, function(){})
	})

}

function ShowGalGo(){
	ShowGalMove(1);
	setTimeout("ShowGalGo()", 10000);
}

function ShowGalMove(d){
	gcur_old=gcur;
	gcur+=d;
	if(gcur<0){gcur=gimgs.length-1;}
	if(gcur>=gimgs.length){gcur=0;}
	ShowGal();
}

$(document).ready(function(){

	ShowGal();
})
