var currentImage_product = 0;
var imgObj = new Array();

imgObj[1] = new Array('image1','products/product_01_lg.jpg');
imgObj[2] = new Array('image2','products/product_02_lg.jpg');
imgObj[3] = new Array('image3','products/product_03_lg.jpg');
imgObj[4] = new Array('image4','products/product_04_lg.jpg');
imgObj[5] = new Array('image5','products/product_05_lg.jpg');
imgObj[6] = new Array('image6','products/product_06_lg.jpg');
imgObj[7] = new Array('image7','products/product_07_lg.jpg');
imgObj[8] = new Array('image8','products/product_08_lg.jpg');
imgObj[9] = new Array('image9','products/product_09_lg.jpg');
imgObj[10] = new Array('image10','products/product_10_lg.jpg');
imgObj[11] = new Array('image11','products/product_11_lg.jpg');
imgObj[12] = new Array('image12','products/product_12_lg.jpg');
imgObj[13] = new Array('image13','products/product_13_lg.jpg');
imgObj[14] = new Array('image14','products/product_14_lg.jpg');

/*<!------------Gallery------------->*/
imgObj[15] = new Array('image15','photo_gallery/management_01_lg.jpg');
imgObj[16] = new Array('image16','photo_gallery/management_02_lg.jpg');
imgObj[17] = new Array('image17','photo_gallery/management_03_lg.jpg');
imgObj[18] = new Array('image18','photo_gallery/management_04_lg.jpg');
imgObj[19] = new Array('image19','photo_gallery/management_05_lg.jpg');
imgObj[20] = new Array('image20','photo_gallery/management_06_lg.jpg');
imgObj[21] = new Array('image21','photo_gallery/management_07_lg.jpg');
imgObj[22] = new Array('image22','photo_gallery/management_08_lg.jpg');

imgObj[23] = new Array('image23','photo_gallery/infra_01_lg.jpg');
imgObj[24] = new Array('image24','photo_gallery/infra_02_lg.jpg');
imgObj[25] = new Array('image25','photo_gallery/infra_03_lg.jpg');
imgObj[26] = new Array('image26','photo_gallery/infra_04_lg.jpg');
imgObj[27] = new Array('image27','photo_gallery/infra_05_lg.jpg');
imgObj[28] = new Array('image28','photo_gallery/infra_06_lg.jpg');
imgObj[29] = new Array('image29','photo_gallery/infra_07_lg.jpg');
imgObj[30] = new Array('image30','photo_gallery/infra_08_lg.jpg');

imgObj[31] = new Array('image31','photo_gallery/de_01_lg.jpg');
imgObj[32] = new Array('image32','photo_gallery/de_02_lg.jpg');
imgObj[33] = new Array('image33','photo_gallery/de_03_lg.jpg');
imgObj[34] = new Array('image34','photo_gallery/de_04_lg.jpg');
imgObj[35] = new Array('image35','photo_gallery/de_05_lg.jpg');
imgObj[36] = new Array('image36','photo_gallery/de_06_lg.jpg');


/*<!------------Gallery------------->*/

function setImage(imgNum)
{
	currentImage_product = imgNum;
	displayObj = document.getElementById('display_product');
	displayObj.src = imgObj[imgNum][1];

	//displayTextObj = document.getElementById('displayImageText');
//	displayTextObj.innerHTML = imgObj[imgNum][2];
}

function toggleBorder(imgObj, setBit)
{
	if(setBit == 1)
	{
		removeActiveFromAll();

		imgObj.style.border = "1px solid #000000";

	}
	if(setBit == 0)
	{
		removeActiveFromAll();
	}
}

function removeActiveFromAll()
{
	var obj;

	for(i = 1; i <= 16 ; i++)
	{
		if(i == currentImage)
		{
			continue;
		}

		obj = document.getElementById("ShowCaseImage" + i);
		//obj.style.className = "thumb_border_active";
		obj.style.border = "1px solid #cc9999";
	}
}