curImage = 0;
images = Array();

curGrid = 0;
gridShown = false;
function setImage(i)
{
	$('imgMain').src = "http://www.yrekaautocenter.com/i/loading.gif";
	i = images.indexOf(i);
	var url = "http://www.yrekaautocenter.com/i/image.php?id=";
	$('imgMain').src = url+images[i]+"&s=l";
	curImage = i;
	if(gridShown)
		hideGrid();
}

function getNext()
{
	if(gridShown)
	{
		nextGrid();
	}
	else
	{
		nextImage();
	}
}

function getPrev()
{
	if(gridShown)
	{
		prevGrid();
	}
	else
	{
		prevImage();
	}
}

function nextGrid()
{
	$('imageGrid'+curGrid).style.display = "none";
	if(curGrid<gridCount-1)
		curGrid++;
	else
		curGrid = 0;
	$('imageGrid'+curGrid).style.display = "block";
}
	
function prevGrid()
{
	$('imageGrid'+curGrid).style.display = "none";
	if(curGrid>0)
		curGrid--;
	else
		curGrid = gridCount-1;
	$('imageGrid'+curGrid).style.display = "block";
}

function nextImage()
{
	if(curImage != images.length-1)
	{
		$('imgMain').src = "http://www.yrekaautocenter.com/i/loading.gif";
		$('imgMain').src = "http://www.yrekaautocenter.com/i/image.php?id="+images[curImage+1]+"&s=l";
		curImage++;
	}
	else
	{
		$('imgMain').src = "http://www.yrekaautocenter.com/i/loading.gif";
		$('imgMain').src = "http://www.yrekaautocenter.com/i/image.php?id="+images[0]+"&s=l";
		curImage = 0;
	}
}

function prevImage()
{
	if(curImage != 0)
	{
		$('imgMain').src = "http://www.yrekaautocenter.com/i/loading.gif";
		$('imgMain').src = "http://www.yrekaautocenter.com/i/image.php?id="+images[curImage-1]+"&s=l";
		curImage--;
	}
	else
	{
		$('imgMain').src = "http://www.yrekaautocenter.com/i/loading.gif";
		$('imgMain').src = "http://www.yrekaautocenter.com/i/image.php?id="+images[images.length-1]+"&s=l";
		curImage = images.length-1;
	}
}

function showGrid()
{
	if(gridShown)
		hideGrid();
	else
	{
		gridShown = true;
		$('mainImage').style.display = "none";
		$('imageGrid'+curGrid).style.display = "block";
		if(gridCount <=1)
		{
			$('nextLabel').style.display = "none";
			$('prevLabel').style.display = "none";
		}
		$('imgIcon').src = "http://www.yrekaautocenter.com/i/picIcon.jpg";
	}
}

function hideGrid()
{
	gridShown = false;
	$('imageGrid'+curGrid).style.display = "none";
	$('mainImage').style.display = "block";
	if(images.length>1)
	{
		$('nextLabel').style.display = "block";
		$('prevLabel').style.display = "block";
	}
	$('imgIcon').src = "http://www.yrekaautocenter.com/i/gridIcon.jpg";
}

function closeDetail()
{
	$('carDetails').style.display = "none";
	$('carDetails').innerHTML = "";
	$('pageContent').style.display = "block";
	resizeShadows();
}

function printCarDetails()
{
	print();
}