var currentSelectedImage;

function loadImage(image, imageId, name)
{
	document.getElementById("mainImage").src = image;
	document.getElementById("imageTextBox").innerHTML = name;
	document.getElementById(imageId).className = "imageSelected"; 

	if (currentSelectedImage != "")
	{
		document.getElementById(window.currentSelectedImage).className = "image";
	}
	window.currentSelectedImage = imageId;
}

function scrollDivLeft(scrollStep)
{
	if (document.getElementById("galleryThumbContainer") != null && window.amountOfScrols > 0)
	{
		document.getElementById("galleryThumbContainer").scrollLeft -= scrollStep;
		window.amountOfScrols -= 1;
	}
}

function scrollDivRight(scrollStep)
{
	if (document.getElementById("galleryThumbContainer") != null && window.amountOfScrols < window.maxAmountOfScrols)
	{
		document.getElementById("galleryThumbContainer").scrollLeft += scrollStep;
		window.amountOfScrols += 1;
	}
}
