﻿var thumbnailContainer;
var popUpContainer;
var showImage;
var showCopy;
var img;

function HideAllThumbnails()
{
    thumbnailContainer.style.display = 'block';
    popUpContainer.style.display = 'none';
}

function HandleCategoriesListChanged(thumbnailCont, popUpCont, hideDiv)
{
	if(thumbnailContainer !== undefined)
	{
		HideAllThumbnails();
	}
	
	thumbnailContainer = document.getElementById(thumbnailCont);
	popUpContainer = document.getElementById(popUpCont);
	hideDivContainer = document.getElementById(hideDiv);
	
	thumbnailContainer.style.display = 'none';
	popUpContainer.style.display = 'block';
	hideDivContainer.style.marginLeft = '0px';
}

function HandleCategoriesListRemove(thumbnailCont, popUpCont, hideDiv)
{
	var thumbnailCon = document.getElementById(thumbnailCont);
	var popUpCon = document.getElementById(popUpCont);
	var hideDivCon = document.getElementById(hideDiv);
	
	thumbnailCon.style.display = 'block';
	popUpCon.style.display = 'none';
	hideDivCon.style.marginLeft = '25px';
}

function HandleInvolvedListChange(showTNCont, imgSrc, imgId)
{
	if(img != undefined){
		showImage.src = "../Themes/Default/Images/LetItOut/"+img+"Small.jpg";
		showCopy.style.display = 'none';
	}
	
	img = imgSrc;
	
	showCopy = document.getElementById(showTNCont);
	showImage = document.getElementById(imgId);
	
	showImage.src = "../Themes/Default/Images/LetItOut/"+img+"Large.jpg";
	showCopy.style.display = 'block';
}
function HandleInvolvedJulieChange(showTNCont, imgSrc, imgId)
{
	showCopy = document.getElementById(showTNCont);
	showImage = document.getElementById(imgId);

	img = imgSrc;
	
	showImage.src = "../Themes/Default/Images/LetItOut/"+img+"Large.jpg";
	showCopy.style.display = 'block';
}
