// JavaScript Document

function init ()
{
	selectFirstPhoto (); // id of the currently selected photo gallery image
	//selectItem ("photo", -1);	
	priceAdjust ();
}

function showCurrentPhoto ()
{
	document.getElementById("main_item").src = 'images/collections/' + currentCollection + '/' + currentPhotoColor + '/gallery_' + currentPhotoImage + ".jpg";	
}

function selectFirstPhoto ()
{
	if (currentItem == 'photo')
	{
		currentPhotoImage = firstPhotoId;
		currentPhotoColor = firstPhotoColor;
		currentPopup = 'images/collections/' + currentCollection + '/' + currentPhotoColor + '/gallery_large_' + currentPhotoImage + '.jpg';
	}
}

function selectPhoto (color, id)
{
	document.getElementById("gallery_thumb_" + currentPhotoImage + '_' + currentPhotoColor).style['background'] = "transparent";
	currentPhotoImage = id;
	currentPhotoColor = color;
	showCurrentPhoto ();
	currentPopup = 'images/collections/' + currentCollection + '/' + color + '/gallery_large_' + id + '.jpg';	
	document.getElementById("gallery_thumb_" + currentPhotoImage + '_' + currentPhotoColor).style['background'] = "black";	
}

window.onload = init;

