﻿//Specify global variable for image path in the cms
var imagePath = "/pictures/";

function getImage(textdescribe, imageName)
{
	//Display text describe
	document.getElementById("galleryimagetextdescribe").innerHTML = textdescribe;
	
	//Change the big image
	document.getElementById("galleryBigimage").src = imagePath + imageName;
}

function setFirstImage(imageName)
{
	//Change the big image
	document.getElementById("galleryBigimage").src = imagePath + imageName;
}
