// script to scale a background picture to the window, with contained image porportions, and centering the image
// By: Gustav Degerman, www.Ideform.se
// ----------------------------------------

function changeImageWithSelect(id,nrOfSelect)
	{

		//The image node
		var theImage = document.getElementById("projektBild");
		theImage.src = "/_img/pic/offentliga_bilder/"+id+".jpg";
		theImage.width = imgWidth[ id ];
		theImage.height = imgHeight[ id ];
		
		//The text node
		var theText = document.getElementById("bildTextBox2");
		theText.innerHTML=imgText[ id ];
		
		//SelectHighLight all white
		for (i in imgId)
		{
			var theSelectButton = document.getElementById("selectButton" + i );
			theSelectButton.src = "/_img/graphic/icon-selectBall-0.png";
			
			// pointer curser
			theSelectButton.style.cursor="pointer";
		}
		
		//SelectHighLight id grey
		theSelectButton = document.getElementById("selectButton"+id);
		theSelectButton.src = "/_img/graphic/icon-selectBall-1.png";
		theSelectButton.style.cursor="default";
	
	}
	
	function changeImageWithSelect2(id,nrOfSelect)
	{

		//The image node
		var theImage = document.getElementById("projektBild");
		theImage.src = "/_img/pic/privata_bilder/"+id+".jpg";
		theImage.width = imgWidth[ id ];
		theImage.height = imgHeight[ id ];
		
		//The text node
		var theText = document.getElementById("bildTextBox2");
		theText.innerHTML=imgText[ id ];
		
		//SelectHighLight all white
		for (i in imgId)
		{
			var theSelectButton = document.getElementById("selectButton" + i );
			theSelectButton.src = "/_img/graphic/icon-selectBall-0.png";
			
			// pointer curser
			theSelectButton.style.cursor="pointer";
		}
		
		//SelectHighLight id grey
		theSelectButton = document.getElementById("selectButton"+id);
		theSelectButton.src = "/_img/graphic/icon-selectBall-1.png";
		theSelectButton.style.cursor="default";
	
	}