var imgList = new Array();				
var oMainTable, oClientDiv, oClientTable, oBtnTable;				
var UA_VER = new Array(2);				
var bResizing;				
				
function getUAVer()				
{				
	var ver = navigator.userAgent;			
	var re, arr;			
/*				
	var s = "";			
	s += ScriptEngine() + " Version ";			
	s += ScriptEngineMajorVersion() + ".";			
	s += ScriptEngineMinorVersion() + ".";			
	s += ScriptEngineBuildVersion();			
	window.alert(s);			
//*/				
	if (ver.indexOf("Opera") != -1)			
	{			
		UA_VER[0] = "Opera";		
		re = /Opera ([0-9\.]+)/;		
		if ((arr = re.exec(ver)) != null)		
			UA_VER[1] = parseFloat(arr[1]);	
	}			
				
	else if (ver.indexOf("Safari") != -1)			
	{			
		UA_VER[0] = "Safari";		
		re = /Safari\/([0-9\.]+)/;		
		if ((arr = re.exec(ver)) != null)		
			UA_VER[1] = parseFloat(arr[1]);	
	}			
				
	else if (ver.indexOf("Gecko") != -1)			
	{			
		UA_VER[0] = "Mozilla";		
		re = /rv:([0-9\.]+)/;		
		if ((arr = re.exec(ver)) != null)		
			UA_VER[1] = parseFloat(arr[1]);	
	}			
				
	else if (ver.indexOf("MSIE") != -1)			
	{			
		UA_VER[0] = "MSIE";		
		re = /MSIE ([0-9\.]+);/;		
		if ((arr = re.exec(ver)) != null)		
			UA_VER[1] = parseFloat(arr[1]);	
	}			
//	window.alert(ver + " | " + UA_VER[1]);			
}				
				
function init()				
{				
	getUAVer();			
				
	oMainTable = document.getElementById("oMainTable");	//global var		
	oClientDiv = document.getElementById("oClientDiv");	//global var		
				
	//init menu			
	var i, o;			
	for (i = 0; i < 5; i++)			
	{			
		o = oMainTable.rows[2].cells[i];		
		o.style.font = "14px Matura MT Script Capitals";		
		o.style.color = "black";		
		if (UA_VER[0] == "MSIE" && UA_VER[1] < 6.0)		
			o.style.cursor = "hand";	
		else		
			o.style.cursor = "pointer";	
		o.onmouseover = hilite;		
		o.onmouseout = hilite;		
	}			
				
	initProduct();			
	positionPop(0, 0, 100, 240);			
//	window.status = oMainTable.rows[0].cells[1].offsetHeight + "/" + oMainTable.rows[1].cells[0].offsetHeight + "/" + oMainTable.rows[2].cells[0].offsetHeight;			
}				
				
/* Callback Functions st */				
				
function hilite()				
{				
	if (UA_VER[0] != "Opera")			
		(this.style.color == "white") ? this.style.color = "black" : this.style.color = "white";		
	else			
		(this.style.color == "#ffffff") ? this.style.color = "#000000" : this.style.color = "#ffffff";	//fixme: opera bug	
}				
				
function popWindow()				
{				
	var re;			
	re = /s\.jpg/g;			
	window.open (this.src.replace(re, ".jpg"));			
}				
				
function imgItem(type, pic, desc)				
{				
	this.type = type;			
	this.pic = pic;			
	this.desc = desc;			
}				
				
function AltImg()				
{				
	var o = this.getElementsByTagName("IMG").item(0);			
	(o.style.visibility == "hidden") ? o.style.visibility = "visible" : o.style.visibility = "hidden";			
	var oSpans = this.getElementsByTagName("SPAN");			
	for(i=0; i<oSpans.length; i++)			
		(oSpans[i].style.visibility == "hidden") ? oSpans[i].style.visibility = "visible" : oSpans[i].style.visibility = "hidden";		
}				
				
function txtDeco()				
{				
	if(this.style.textDecoration == "underline")			
		this.style.textDecoration = "none";		
	else			
		this.style.textDecoration = "underline";		
}				
/* Callback Functions ed */				
				
function insertPop(cx, cy, w, h, ox, oy, imgName, txtDesc, font, isCenter, isAlt)				
{				
	var oCell = oClientTable.rows[cx].cells[cy];			
				
	if (isAlt)			
	{			
		oCell.onmouseover = AltImg;		
		oCell.onmouseout  = AltImg;		
	}			
				
	if (imgName != "")			
	{			
		var oImg = document.createElement("IMG");		
		oImg.src = imgName;		
				
		oImg.onload = function()		
		{		
			positionPop(cx, cy, ox, oy);	
		};		
				
		oImg.style.filter = "progid:DXImageTransform.Microsoft.Fade(duration=0.6)";		
	//	oImg.style.position = "absolute";		
		oImg.style.border = "1px solid #C6BEA5";		
		oImg.style.margin = "8px";		
		oCell.appendChild(oImg);		
	}			
				
	var oTransDiv = document.createElement("DIV");			
	oTransDiv.style.backgroundColor = "#110C01";			
//	oTransDiv.style.border = "2px solid red";			
	if (oTransDiv.style.opacity != null)			
		oTransDiv.style.opacity = "0.5";		
	else if (oTransDiv.style.filter != null)			
		oTransDiv.style.filter = "alpha(opacity=50)";		
	oTransDiv.style.position = "absolute";			
	oCell.appendChild(oTransDiv);			
				
	var oBdrTable = document.createElement("TABLE");			
	oBdrTable.style.borderCollapse="collapse";			
	oBdrTable.cellPadding = "0";			
//	oBdrTable.border = "1";			
	oBdrTable.style.position = "absolute";			
	oCell.appendChild(oBdrTable);			
				
	var oTxtTable = document.createElement("TABLE");			
//	oTxtTable.style.border = "1px solid blue";			
	oTxtTable.insertRow(-1).insertCell(-1);			
	oTxtTable.style.color = "white";			
	oTxtTable.style.font = font;			
	oTxtTable.cellPadding = "6 0";	//fixme		
	oTxtTable.rows[0].cells[0].innerHTML = txtDesc;			
	if (oTxtTable.style.filter != null)			
		oTxtTable.style.filter = "progid:DXImageTransform.Microsoft.Shadow(color='black', Direction=135, Strength=3)";		
	oTxtTable.style.position = "absolute";			
	if (isCenter)			
		oTxtTable.style.textAlign = "center";		
	else			
		oTxtTable.style.textAlign = "left";		
	oCell.appendChild(oTxtTable);			
				
	for (i = 0; i <= 4; i ++)			
	{			
		oRow = oBdrTable.insertRow(-1);		
		for (j = 0; j <= 3; j ++)		
			oRow.insertCell(-1);	
	}			
				
	oBdrTable.rows[0].cells[0].style.background = "url('imgs/bdr_tl.png') no-repeat";			
	oBdrTable.rows[0].cells[1].style.background = "url('imgs/bdr_t.png') repeat-x";			
	oBdrTable.rows[0].cells[2].style.background = "url('imgs/bdr_tr.png') no-repeat";			
				
	oBdrTable.rows[1].cells[0].style.background = "url('imgs/bdr_l.png') repeat-y";			
	oBdrTable.rows[1].cells[1].style.width  = w + "px";			
	oBdrTable.rows[1].cells[1].style.height = h + "px";			
	oBdrTable.rows[1].cells[2].style.background = "url('imgs/bdr_r.png') repeat-y";			
				
				
	oBdrTable.rows[2].cells[0].style.background = "url('imgs/bdr_bl.png') no-repeat";			
	oBdrTable.rows[2].cells[1].style.background = "url('imgs/bdr_b.png') repeat-x";			
	oBdrTable.rows[2].cells[2].style.background = "url('imgs/bdr_br.png') no-repeat";			
				
				
				
	oBdrTable.rows[0].cells[0].style.width  = oBdrTable.rows[0].cells[2].style.width  = oBdrTable.rows[2].cells[0].style.width  = oBdrTable.rows[2].cells[2].style.width  = "11px";			
	oBdrTable.rows[0].cells[0].style.height = oBdrTable.rows[0].cells[2].style.height = oBdrTable.rows[2].cells[0].style.height = oBdrTable.rows[2].cells[2].style.height = "11px";			
				
	oTransDiv.style.width  = oTxtTable.style.width  = w + 22 + "px";	//fixme: 11*2		
	oTransDiv.style.height = oTxtTable.style.height = h + 22 + "px";			
}				
				
function insertCellHTML(x, y, txt, id)				
{				
				
	var oCell = oClientTable.rows[x].cells[y];			
				
	var oSpan = document.createElement("SPAN");			
	oSpan.style.position = "absolute";			
	oSpan.style.font = "12px Arial";			
	oSpan.style.color = "white";			
	oSpan.style.width = "200px"			
//	oSpan.style.border = "1px solid red";			
	oSpan.innerHTML = txt + "<br>";			
	oSpan.id = id;			
	oSpan.onclick = EnumImg;			
	oSpan.onmouseover = txtDeco;			
	oSpan.onmouseout = txtDeco;			
	oSpan.style.visibility = "hidden";			
	if (UA_VER[0] == "MSIE" && UA_VER[1] < 6.0)			
		oSpan.style.cursor = "hand";		
	else			
		oSpan.style.cursor = "pointer";		
				
	oCell.appendChild(oSpan);			
}				
				
function positionPop(x, y, left, top)				
{				
	var oCell, oImg, oBdrTable, oTxtTable, oTransDiv, offsetl, offsett, oSpans, i;			
				
	oCell = oClientTable.rows[x].cells[y];			
	oImg = oCell.getElementsByTagName("IMG").item(0);			
	oBdrTable = oCell.getElementsByTagName("TABLE").item(0);			
	oTxtTable = oCell.getElementsByTagName("TABLE").item(1);			
	oTransDiv = oCell.getElementsByTagName("DIV").item(0);			
	offsetl = oMainTable.offsetLeft + oMainTable.rows[3].cells[0].offsetLeft + oCell.offsetLeft + left - 1;			
	offsett = oMainTable.offsetTop + oMainTable.rows[3].cells[0].offsetTop + oCell.offsetTop + top - 1;			
				
	if (oImg)			
	{			
		offsetl += oImg.offsetLeft;		
		offsett += oImg.offsetTop;		
	}			
				
	oBdrTable.style.left = oTxtTable.style.left = oTransDiv.style.left = offsetl + "px";			
	oBdrTable.style.top  = oTxtTable.style.top  = oTransDiv.style.top  = offsett + "px";			
				
	oSpans = oCell.getElementsByTagName("SPAN");			
	for(i=0; i<oSpans.length; i++)			
	{			
		oSpans[i].style.top = offsett + 50 + i * 16 + "px";		
		oSpans[i].style.left = offsetl + "px";		
	}			
}				
				
function insertBtn(txtDesc, id)				
{				
	oBtnTable = document.createElement("TABLE");			
	oBtnTable.onclick = initProduct;			
	oBtnTable.id = id;			
	oBtnTable.style.color = "white";			
	oBtnTable.style.font = "14px Arial";			
	oBtnTable.style.borderCollapse="collapse";			
	oBtnTable.cellPadding = "0";			
	oBtnTable.style.cursor = "hand";			
	if (UA_VER[0] == "MSIE" && UA_VER[1] < 6.0)			
		oBtnTable.style.cursor = "hand";		
	else			
		oBtnTable.style.cursor = "pointer";		
//	oBtnTable.style.border = "1 solid red";			
	var oRow = oBtnTable.insertRow(-1);			
	var oCell = oRow.insertCell(-1);			
	oCell.style.background = "url('imgs/btn_l.png') no-repeat";			
	oCell.height = "23";			
	oCell.width = "41";			
	oCell = oRow.insertCell(-1);			
	oCell.style.background = "url('imgs/btn_m.png') repeat-x";			
	oCell.height = "23";			
	oCell.innerHTML = txtDesc;			
	oCell = oRow.insertCell(-1);			
	oCell.style.background = "url('imgs/btn_r.png') no-repeat";			
	oCell.height = "23";			
	oCell.width = "21";			
				
	oClientDiv.appendChild(oBtnTable);			
}				
				
function removeAllChildNodes(node)				
{				
	if (node && node.hasChildNodes && node.removeChild)			
	{			
		while (node.hasChildNodes())		
			node.removeChild(node.firstChild);	
	}			
} // removeAllChildNodes()				
				
function initClientTable(h, isLeft)				
{				
	if(oBtnTable != null)			
	{			
		removeAllChildNodes(oBtnTable);		
		oClientDiv.removeChild(oBtnTable);		
		oBtnTable = null;		
	}			
				
	if(oClientTable != null)			
	{			
		removeAllChildNodes(oClientTable);		
		oClientDiv.removeChild(oClientTable);		
	}			
	oClientTable = document.createElement("TABLE");			
	oClientTable.id = "oClientTable";			
//	oClientTable.border = "1px solid red";			
	oClientTable.style.width = "100%";			
	if (h)			
		oClientTable.style.height = h + "px";		
	if (isLeft)			
		oClientTable.style.textAlign = "left";		
	else			
		oClientTable.style.textAlign = "center";		
	oClientDiv.appendChild(oClientTable);			
}				
				
function initHome()				
{				
	initClientTable();			
	oClientTable.insertRow(-1).insertCell(-1);			
	var txtTemp =  "Welcome to Oriental Gallery, Richmond, British Columbia. We are ";			
		txtTemp += "direct importers &amp; sellers of fine home furnishing from China.<br> <br> ";		
		txtTemp += "We select the fine quality contemporary home furnishings and Chinese ";		
		txtTemp += "antique to blend of the new and old. Our new design furnitures with beauty, function, ";		
		txtTemp += "and style, all made from Reclaimed Elm Wood and Combined with Antiques &amp; Reproductions ";		
		txtTemp += "to create a unique look that will last many generations.";
                txtTemp += "To mix and match our Canadian made sofas and Mattresses make your home even more comfortable and beautiful.<br><br>";	
						
	
				
	insertPop (0, 0, 520, 140, 100, 350, "snap/web Aug 16, home 002.jpg", txtTemp, "14px Arial", false, false);			
//	positionPop(0, 0, 100, 140);			
//	insertBtn("Continue", "cont");			
}				
				
function initNews()				
{	initClientTable(320, true);			
	oClientTable.insertRow(-1).insertCell(-1);			
				
	
           var txtTemp= "<b>BIG BIG SALE....</a></td></tr><tr><td></b> <br><br>";
		txtTemp +=" EVERYTHING MUST GO....ENTIRE STORE...ADDITIONAL 30% OFF....UP TO 80% OFF....</b><br><br>";
     				
   

txtTemp+= "<b>NEW SHIPMENT-JAN 2012 </b> <br><br>";
            txtTemp +=" All new furnitures more styles in bed, TV cabinet, dining table, more and more...... </b><br><br>";  

         
			
				
				
	insertPop (0, 0, 560, 270, 0, 0, "", txtTemp, "14px Arial", false, false);			
	positionPop(0, 0, 50, 16);			
//	insertBtn("Continue", "cont");			
}				
							
	
function initContact()				
{				
	initClientTable(0, true);			
	oClientTable.insertRow(-1).insertCell(-1);			
				
	var txtTemp = "<table style=\"font:16px Arial; color:white\" ><tr><td>Address</td><td>1-12331 Bridgeport Road, Richmond, BC, V6V 1J4, Canada</td></tr><tr><td>Tel</td><td>(604) 270 3883</td></tr><tr><td>Fax</td><td>(604) 270 3813</td></tr><tr><td>Email</td><td><a href=\"mailto:info@orientalgallery.ca\">info@orientalgallery.ca</a></td></tr><tr><td>Website</td><td>&nbsp;<a href=\"http://www.orientalgallery.ca\">www.orientalgallery.ca</a></td></tr><tr><td>Opening Time</td><td>&nbsp;Mon to Sat - 10:00-6:00    Sun &amp; holidays - 12:00-5:00</td></tr></table>";			
				
	insertPop (0, 0, 720, 140, 0, 0, "snap/web Aug 16, home 002.jpg", txtTemp, "16px Arial", false, false);			
//	positionPop(0, 0, 0, 0);			
//	insertBtn("Continue", "cont");			
}				
				
function initAbout()				
{				
	initClientTable(0, true);			
	oClientTable.insertRow(-1).insertCell(-1);			
				
	var txtTemp =  "Oriental Gallery started on West Broadway as one of the first importers of Chinese Antique furniture. From that day Oriental Gallery has always been a leader in its field. The popularity of the West Broadway shop lead to a move to a more prestigious location on South Granville's 'Antique Row' where business thrived. Many friends were made in that time and we have many happy memories.<br><br>";			
	    txtTemp += "All companies need to grow and Oriental Gallery was no different. In 2002 it was decided that Oriental Gallery was outgrowing its 1000 square feet store and needed room to expand and experiment. A new store was found in Richmond that fitted the bill perfectly, being eight times the size of the Granville store. The move was a great success. We have made many new friends whilst retaining the loyalty of  our Vancouver customers.<br><br>";		
	    txtTemp += "Oriental Gallery carry a very large selection of home furnishings including Chinese antiques, reproduction, new made reclaimed elm wood furnitures, rustic teaks and mahogany from Indonesia, Canadian made upholstered sofas and matttresses ";		
				
	insertPop (0, 0, 400, 442, 0, 0, "imgs/index5.jpg", txtTemp, "14px Arial", false, false);			
	positionPop(0, 0, 0, 0);			
}				
				
				
function initProduct()				
{				
	initClientTable();			
	var i, j, r, c, oRow, oCell;			
	r = 2; c = 3;			
///*				
	for (i = 0; i < r; i ++)			
	{			
		oRow = oClientTable.insertRow(-1);		
				
		for (j = 0; j < c ; j ++)		
		{		
			oCell = oRow.insertCell(-1);	
//			oCell.style.border = "1px solid red"	
		}		
	}			
  	insertCellHTML(0, 0, "Room 1", "showroom_1"); 			
        insertCellHTML(0, 0, "Room 2", "showroom_2");				
        insertCellHTML(0, 0, "Room 3", "showroom_3");				 
        insertCellHTML(0, 0, "Room 4", "showroom_4");	
        insertCellHTML(0, 0, "Room 5", "showroom_5");

                 	
	insertCellHTML(0, 1, "Antique and Repro Furniture", "Antique Photos"); 
	insertCellHTML(0, 1, "Elm Wood Furniture", "Elm Wood Photos"); 	
	insertCellHTML(0, 1, "Indonesian Furniture", "Tiger Wood Photos"); 
     	insertCellHTML(0, 1, "Press", "press");
	insertCellHTML(0, 1, "Van Home and Int Design Show 08", "Interior Design Show 08");
		
	
	insertCellHTML(0, 2, "Doors, Screens & Window Frames", "living_misc_doors");			
        insertCellHTML(0, 2, "Trunks & Baskets", "living_other_trunk");				
        insertCellHTML(0, 2, "Mirrors & Lamp", "living_misc_mirror");				
	insertCellHTML(0, 2, "Accessories", "art_carv");							
        insertCellHTML(0, 2, "Painting", "art_painting");				
	insertCellHTML(0, 2, "Ceramics", "art_ceramic");
				
	insertCellHTML(1, 0, "Dining Tables", "dining_tab");			
	insertCellHTML(1, 0, "Dining Chairs","dining_ch");			
	insertCellHTML(1, 0, "Coffee Tables", "dining_coffee_tab");
	insertCellHTML(1, 0, "Tall Cabinets", "dining_cab");
	insertCellHTML(1, 0, "Other Cabinets", "dining_cab_other");
	insertCellHTML(1, 0, "Stylus Sofas", "Stylus");			
				
	insertCellHTML(1, 1, "Beds", "sleeping_bed");			
	insertCellHTML(1, 1, "Bedside Cabinets", "sleeping_cab");			
	insertCellHTML(1, 1, "Desks", "Office_desk");	
	insertCellHTML(1, 1, "Display Shelves", "Office_shelves");	
	insertCellHTML(1, 1, "Mattresses", "Posture Beauty");	
		
	insertCellHTML(1, 2, "Outdoor", "Outdoor Photos");			
	insertCellHTML(1, 2, "Lighting", "Lighting");			
		
				
	insertPop(0, 0, 90, 16, 0, 0, "snap/Home-Showroom Jan 11s.jpg", "Showroom", "bold 16px Arial", true, true);			
	insertPop(0, 1, 100, 16, 0, 0, "snap/Home-Wood Jan 11s.jpg", "Products", "bold 16px Arial", true, true);			
	insertPop(0, 2, 90, 16, 0, 0, "snap/Home-Living Jan 11s.jpg", "Accessories", "bold 16px Arial", true, true);			
	insertPop(1, 0, 180, 16, 0, 0, "snap/Home-Dining Jan 11s.jpg", "Living & Dining Room", "bold 16px Arial", true, true);			
	insertPop(1, 1, 180, 16, 0, 0, "snap/Home-Bed Jan 11s.jpg", "Bedroom & Home Office", "bold 16px Arial", true, true);			
	insertPop(1, 2, 150, 16, 0, 0, "snap/Home-Outdoor Jan 11s.jpg", "Outdoor & Lighting", "bold 16px Arial", true, true);			
				
	initEnumImg();			
				
	for (i = 0; i < r; i ++)			
		for (j = 0; j < c ; j ++)		
			positionPop(i, j, 0, 0);	
//*/				
}				
				
function EnumImg()				
{				
	var i, c, r, l, oRow, oCell, oImg;			
	i = c = r = 0;			
	l = oClientTable.rows.length;			
	while (oClientTable.rows.length > 0)			
		oClientTable.deleteRow(-1);		
//	oClientTable.style.height ="0";			
				
	for (i in imgList)			
	{			
		if (imgList[i].type == this.id)		
		{		
			if (c % 3 == 0)	
			{	
				oRow = document.getElementById("oClientTable").insertRow(-1);
				r ++;
			}	
			oCell = oRow.insertCell(-1);	
			c ++;	
				
			oImg = document.createElement("IMG");	
			oImg.src = "snap/" + this.id + "/" + imgList[i].pic + ".jpg";	
			oImg.style.border = "1px solid white";	
			oImg.style.cursor = "hand";	
			oImg.style.margin = "8px";	
			oImg.onclick = popWindow;	
			oCell.appendChild(oImg);	
		}		
	}			
				
	insertBtn("Back", "back");			
}				
				
	function initEnumImg()				
{				
	var i = 0;			
//	Showroom
			
				
			
	imgList[i++] = (new imgItem("showroom_1", "June 1s", ""));			
    	imgList[i++] = (new imgItem("showroom_1", "June 2s", ""));
    	imgList[i++] = (new imgItem("showroom_1", "June 3s", ""));			
    	imgList[i++] = (new imgItem("showroom_1", "June 4s", ""));			
    	imgList[i++] = (new imgItem("showroom_1", "June 5s", ""));
    	imgList[i++] = (new imgItem("showroom_1", "June 6s", ""));
	
        imgList[i++] = (new imgItem("showroom_2", "June 7s", ""));			
	imgList[i++] = (new imgItem("showroom_2", "June 8s", ""));			
    	imgList[i++] = (new imgItem("showroom_2", "June 9s", ""));
    	imgList[i++] = (new imgItem("showroom_2", "June 10s", ""));
        imgList[i++] = (new imgItem("showroom_2", "June 11s", ""));
        imgList[i++] = (new imgItem("showroom_2", "June 12s", ""));
                 
        imgList[i++] = (new imgItem("showroom_3", "June 13s", ""));
        imgList[i++] = (new imgItem("showroom_3", "June 14s", ""));				
        imgList[i++] = (new imgItem("showroom_3", "June 15s", ""));
        imgList[i++] = (new imgItem("showroom_3", "June 16s", ""));				
        imgList[i++] = (new imgItem("showroom_3", "June 17s", ""));
        imgList[i++] = (new imgItem("showroom_3", "June 18s", ""));
				
        imgList[i++] = (new imgItem("showroom_4", "June 19s", ""));	
      	imgList[i++] = (new imgItem("showroom_4", "June 20s", ""));				
        imgList[i++] = (new imgItem("showroom_4", "June 21s", ""));				
        imgList[i++] = (new imgItem("showroom_4", "June 22s", ""));
        imgList[i++] = (new imgItem("showroom_4", "June 23s", ""));				
      	imgList[i++] = (new imgItem("showroom_4", "June 24s", ""));

        imgList[i++] = (new imgItem("showroom_5", "June 26s", ""));
        imgList[i++] = (new imgItem("showroom_5", "June 27s", ""));				
        imgList[i++] = (new imgItem("showroom_5", "June 28s", ""));
        imgList[i++] = (new imgItem("showroom_5", "June 29s", ""));				
        imgList[i++] = (new imgItem("showroom_5", "June 30s", ""));
        imgList[i++] = (new imgItem("showroom_5", "June 31s", ""));				
                 
				
//	Products 	

		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (1)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (2)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (5)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (6)s", ""));	
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (9)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (10)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (11)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (12)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (13)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (14)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (15)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (16)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (17)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (18)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (19)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (20)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (21)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (22)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (23)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (24)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (25)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (26)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (27)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (28)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (29)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (30)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (31)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (32)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (33)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (35)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (36)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (37)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (38)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (39)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (39)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (40)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (41)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (42)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (43)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (44)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (45)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (46)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (47)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (50)s", ""));	
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (56)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (57)s", ""));	
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (60)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (61)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (62)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (63)s", ""));	
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (65)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (66)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (68)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (69)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (72)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (73)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (74)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (75)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (76)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (77)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (78)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (79)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (80)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (81)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (83)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (84)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (85)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (86)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (87)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (88)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (91)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (92)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (93)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (95)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (96)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (97)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (98)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (99)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (100)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (101)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (102)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (103)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (104)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (105)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (106)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (107)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (108)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (109)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (110)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (111)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (112)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (113)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (114)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (115)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (116)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (117)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (118)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (119)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (120)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (121)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (122)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (123)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (124)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (125)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (126)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (127)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (128)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (129)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (130)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (131)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (132)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (133)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (134)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (135)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (136)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (137)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (138)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (139)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (140)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (141)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (142)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (143)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (144)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (145)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (147)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (148)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (150)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (151)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (152)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (153)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (154)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (155)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (156)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (157)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (158)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (159)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (160)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (162)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (164)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (165)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (166)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (167)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (168)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (169)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (170)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (171)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (172)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (173)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (174)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (175)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (176)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (177)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (178)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (179)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (180)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (181)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (182)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (183)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (184)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (185)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (186)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (187)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (188)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (189)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (190)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (191)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (192)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (193)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (194)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (195)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (196)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (197)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (3)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (4)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (7)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (8)s", ""));
   		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (48)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (49)s", ""));	
       		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (51)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (52)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (53)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (54)s", ""));
        	imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (64)s", ""));
        	imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (67)s", ""));
	    	imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (71)s", ""));
    		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (82)s", ""));
        	imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (89)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (90)s", ""));
    		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (163)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (34)s", ""));
        	imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (58)s", ""));
		imgList[i++] = (new imgItem("Antique Photos", "Ant-1- (59)s", ""));



		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (3)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (4)s", ""));	
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (6)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (7)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (8)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (9)s", ""));	
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (12)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (14)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (15)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (16)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (17)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (18)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (19)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (20)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (21)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (22)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (24)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (26)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (27)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (28)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (29)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (30)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (31)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (32)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (33)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (34)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (35)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (37)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (38)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (39)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (40)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (41)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (42)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (44)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (47)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (48)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (49)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (50)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (53)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (54)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (55)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (56)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (57)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (58)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (59)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (61)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (62)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (64)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (65)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (66)s", ""));
        	imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (68)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (70)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (71)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (72)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (74)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (75)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (76)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (77)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (78)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (79)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (80)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (81)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (82)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (84)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (85)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (87)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (88)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (89)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (90)s", ""));	
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (92)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (94)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (95)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (96)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (97)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (98)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (99)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (100)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (101)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (102)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (103)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (104)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (105)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (106)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (107)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (108)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (109)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (110)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (111)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (112)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (113)s", ""));	
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (115)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (116)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (117)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (118)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (119)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (120)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (121)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (122)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (123)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (124)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (126)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (127)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (128)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (129)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (130)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (131)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (132)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (133)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (134)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (135)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (136)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (137)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (138)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (1)s", ""));
      		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (5)s", ""));
        	imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (10)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (11)s", ""));
     		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (13)s", ""));
    		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (36)s", ""));
    		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (43)s", ""));
    		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (45)s", ""));
	    	imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (51)s", ""));
		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (60)s", ""));
        	imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (63)s", ""));
    		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (67)s", ""));
        	imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (69)s", ""));
    		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (73)s", ""));
	    	imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (83)s", ""));      
    		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (86)s", ""));
        	imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (91)s", ""));
    		imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (93)s", ""));
        	imgList[i++] = (new imgItem("Elm Wood Photos", "Elm-a- (114)s", ""));


                imgList[i++] = (new imgItem("Tiger Wood Photos", "Ind-a- (1)s", ""));
                imgList[i++] = (new imgItem("Tiger Wood Photos", "Ind-a- (2)s", ""));
	        imgList[i++] = (new imgItem("Tiger Wood Photos", "Ind-a- (3)s", ""));
                imgList[i++] = (new imgItem("Tiger Wood Photos", "Ind-a- (4)s", ""));
                imgList[i++] = (new imgItem("Tiger Wood Photos", "Ind-a- (5)s", ""));
                imgList[i++] = (new imgItem("Tiger Wood Photos", "Ind-a- (6)s", ""));
		imgList[i++] = (new imgItem("Tiger Wood Photos", "Ind-a- (7)s", ""));
                imgList[i++] = (new imgItem("Tiger Wood Photos", "Ind-a- (8)s", ""));
                imgList[i++] = (new imgItem("Tiger Wood Photos", "Ind-a- (9)s", ""));
                imgList[i++] = (new imgItem("Tiger Wood Photos", "Ind-a- (10)s", ""));
		imgList[i++] = (new imgItem("Tiger Wood Photos", "Ind-a- (11)s", ""));
                imgList[i++] = (new imgItem("Tiger Wood Photos", "Ind-a- (12)s", ""));
                imgList[i++] = (new imgItem("Tiger Wood Photos", "Ind-a- (13)s", ""));
                imgList[i++] = (new imgItem("Tiger Wood Photos", "Ind-a- (14)s", ""));
	       	imgList[i++] = (new imgItem("Tiger Wood Photos", "Ind-a- (15)s", ""));
                imgList[i++] = (new imgItem("Tiger Wood Photos", "Ind-a- (16)s", ""));
                imgList[i++] = (new imgItem("Tiger Wood Photos", "Ind-a- (17)s", ""));
                imgList[i++] = (new imgItem("Tiger Wood Photos", "Ind-a- (18)s", ""));
		imgList[i++] = (new imgItem("Tiger Wood Photos", "Ind-a- (19)s", ""));
                imgList[i++] = (new imgItem("Tiger Wood Photos", "Ind-a- (20)s", ""));
                imgList[i++] = (new imgItem("Tiger Wood Photos", "Ind-a- (21)s", ""));
                imgList[i++] = (new imgItem("Tiger Wood Photos", "Ind-a- (22)s", ""));
		imgList[i++] = (new imgItem("Tiger Wood Photos", "Ind-a- (23)s", ""));
                imgList[i++] = (new imgItem("Tiger Wood Photos", "Ind-a- (24)s", ""));
                imgList[i++] = (new imgItem("Tiger Wood Photos", "Ind-a- (25)s", ""));
                imgList[i++] = (new imgItem("Tiger Wood Photos", "Ind-a- (26)s", ""));
		imgList[i++] = (new imgItem("Tiger Wood Photos", "Ind-a- (27)s", ""));
                imgList[i++] = (new imgItem("Tiger Wood Photos", "Ind-a- (28)s", "")); 
                imgList[i++] = (new imgItem("Tiger Wood Photos", "Ind-a- (30)s", ""));
		imgList[i++] = (new imgItem("Tiger Wood Photos", "Ind-a- (31)s", ""));
                imgList[i++] = (new imgItem("Tiger Wood Photos", "Ind-a- (32)s", ""));
                imgList[i++] = (new imgItem("Tiger Wood Photos", "Ind-a- (33)s", ""));
                imgList[i++] = (new imgItem("Tiger Wood Photos", "Ind-a- (34)s", ""));
		imgList[i++] = (new imgItem("Tiger Wood Photos", "Ind-a- (35)s", ""));
                imgList[i++] = (new imgItem("Tiger Wood Photos", "Ind-a- (36)s", ""));
                imgList[i++] = (new imgItem("Tiger Wood Photos", "Ind-a- (37)s", ""));
		imgList[i++] = (new imgItem("Tiger Wood Photos", "Ind-a- (39)s", ""));
                imgList[i++] = (new imgItem("Tiger Wood Photos", "Ind-a- (40)s", ""));
                imgList[i++] = (new imgItem("Tiger Wood Photos", "Ind-a- (41)s", ""));
                imgList[i++] = (new imgItem("Tiger Wood Photos", "Ind-a- (42)s", ""));
		imgList[i++] = (new imgItem("Tiger Wood Photos", "Ind-a- (43)s", ""));
                imgList[i++] = (new imgItem("Tiger Wood Photos", "Ind-a- (44)s", ""));
                imgList[i++] = (new imgItem("Tiger Wood Photos", "Ind-a- (45)s", ""));
                imgList[i++] = (new imgItem("Tiger Wood Photos", "Ind-a- (46)s", ""));
		imgList[i++] = (new imgItem("Tiger Wood Photos", "Ind-a- (47)s", ""));
                imgList[i++] = (new imgItem("Tiger Wood Photos", "Ind-a- (48)s", ""));
                imgList[i++] = (new imgItem("Tiger Wood Photos", "Ind-a- (49)s", ""));
                imgList[i++] = (new imgItem("Tiger Wood Photos", "Ind-a- (50)s", ""));
		imgList[i++] = (new imgItem("Tiger Wood Photos", "Ind-a- (51)s", ""));
                imgList[i++] = (new imgItem("Tiger Wood Photos", "Ind-a- (52)s", ""));
                imgList[i++] = (new imgItem("Tiger Wood Photos", "Ind-a- (53)s", ""));
                imgList[i++] = (new imgItem("Tiger Wood Photos", "Ind-a- (54)s", ""));
		imgList[i++] = (new imgItem("Tiger Wood Photos", "Ind-a- (29)s", ""));
		imgList[i++] = (new imgItem("Tiger Wood Photos", "Ind-a- (38)s", ""));

                    
                   imgList[i++] = (new imgItem("press", "chinese adss", ""));	
                   imgList[i++] = (new imgItem("press", "chinese ads2s", ""));
                   imgList[i++] = (new imgItem("press", "city01s", ""));	
                   imgList[i++] = (new imgItem("press", "city02s", ""));
                   imgList[i++] = (new imgItem("press", "dream house sept07s", ""));	
                   imgList[i++] = (new imgItem("press", "dream house oct07s", ""));
                   imgList[i++] = (new imgItem("press", "dream house sept07-1s", ""));	
                   imgList[i++] = (new imgItem("press", "renovation01s", ""));
                   imgList[i++] = (new imgItem("press", "renovation02s", ""));	
                   imgList[i++] = (new imgItem("press", "vancouver sun98s", ""));
                   imgList[i++] = (new imgItem("press", "vancouver sun198s", ""));	
                   imgList[i++] = (new imgItem("press", "Miss Vancouvers", ""));

                   imgList[i++] = (new imgItem("Interior Design Show 08", "2008 fair 020s", ""));
                   imgList[i++] = (new imgItem("Interior Design Show 08", "2008 fair 103s", ""));
 	           imgList[i++] = (new imgItem("Interior Design Show 08", "2008 fair 106s", ""));
                   imgList[i++] = (new imgItem("Interior Design Show 08", "2008 fair 109s", ""));
                   imgList[i++] = (new imgItem("Interior Design Show 08", "2008 fair 110s", ""));
                   imgList[i++] = (new imgItem("Interior Design Show 08", "2008 fair 112s", ""));
                   imgList[i++] = (new imgItem("Interior Design Show 08", "2008 fair 113s", ""));
                   imgList[i++] = (new imgItem("Interior Design Show 08", "2008 fair 115s", ""));
                   imgList[i++] = (new imgItem("Interior Design Show 08", "2008 fair 117s", ""));
                   imgList[i++] = (new imgItem("Interior Design Show 08", "2008 fair 121s", ""));
                   imgList[i++] = (new imgItem("Interior Design Show 08", "2008 fair 122s", ""));
                   imgList[i++] = (new imgItem("Interior Design Show 08", "2008 fair 123s", ""));
                   imgList[i++] = (new imgItem("Interior Design Show 08", "2008 fair 124s", ""));
                   imgList[i++] = (new imgItem("Interior Design Show 08", "2008 fair 126s", ""));
                   imgList[i++] = (new imgItem("Interior Design Show 08", "2008 fair 127s", ""));
                

//	Accessories			
				
      		
       			
        imgList[i++] = (new imgItem("living_misc_doors", "Ant-1- (15)s", ""));				
       	imgList[i++] = (new imgItem("living_misc_doors", "Ant-1- (16)s", ""));				
       	imgList[i++] = (new imgItem("living_misc_doors", "Ant-1- (17)s", ""));				
       	imgList[i++] = (new imgItem("living_misc_doors", "Ant-1- (18)s", ""));				
       	imgList[i++] = (new imgItem("living_misc_doors", "Ant-1- (19)s", ""));				
       	imgList[i++] = (new imgItem("living_misc_doors", "Ant-1- (22)s", ""));				
       	imgList[i++] = (new imgItem("living_misc_doors", "Ant-1- (39)s", ""));				
       	imgList[i++] = (new imgItem("living_misc_doors", "Ant-1- (47)s", ""));						
       	imgList[i++] = (new imgItem("living_misc_doors", "Ant-1- (62)s", ""));				
       	imgList[i++] = (new imgItem("living_misc_doors", "Ant-1- (65)s", ""));				
       	imgList[i++] = (new imgItem("living_misc_doors", "Ant-1- (78)s", ""));				
        imgList[i++] = (new imgItem("living_misc_doors", "Elm-a- (80)s", ""));				
       	imgList[i++] = (new imgItem("living_misc_doors", "Ant-1- (83)s", ""));	
	imgList[i++] = (new imgItem("living_misc_doors", "Ant-1- (86)s", ""));				
       	imgList[i++] = (new imgItem("living_misc_doors", "Ant-1- (107)s", ""));				
       	imgList[i++] = (new imgItem("living_misc_doors", "Ant-1- (121)s", ""));				
       	imgList[i++] = (new imgItem("living_misc_doors", "Ant-1- (125)s", ""));				
       	imgList[i++] = (new imgItem("living_misc_doors", "Ant-1- (173)s", ""));				
       	imgList[i++] = (new imgItem("living_misc_doors", "Ant-1- (174)s", ""));				
       	imgList[i++] = (new imgItem("living_misc_doors", "Ant-1- (189)s", ""));							
       	imgList[i++] = (new imgItem("living_misc_doors", "Ind-a- (19)s", ""));				
	imgList[i++] = (new imgItem("living_misc_doors", "Ant-1- (51)s", ""));		
	imgList[i++] = (new imgItem("living_misc_doors", "Ant-1- (82)s", ""));
	imgList[i++] = (new imgItem("living_misc_doors", "Ant-1- (58)s", ""));		
 	
	imgList[i++] = (new imgItem("living_other_trunk", "Ant-1- (2)s", ""));
	imgList[i++] = (new imgItem("living_other_trunk", "Ant-1- (69)s", ""));			
       	imgList[i++] = (new imgItem("living_other_trunk", "Ant-1- (72)s", ""));	
	imgList[i++] = (new imgItem("living_other_trunk", "Ant-1- (77)s", ""));			 		
	imgList[i++] = (new imgItem("living_other_trunk", "Ant-1- (122)s", ""));			
       	imgList[i++] = (new imgItem("living_other_trunk", "Ant-1- (124)s", ""));			
	imgList[i++] = (new imgItem("living_other_trunk", "Ant-1- (128)s", ""));			
       	imgList[i++] = (new imgItem("living_other_trunk", "Ant-1- (130)s", ""));		
	imgList[i++] = (new imgItem("living_other_trunk", "Ant-1- (131)s", ""));			
       	imgList[i++] = (new imgItem("living_other_trunk", "Ant-1- (132)s", ""));			
	imgList[i++] = (new imgItem("living_other_trunk", "Ant-1- (133)s", ""));			
       	imgList[i++] = (new imgItem("living_other_trunk", "Ant-1- (150)s", ""));		
	imgList[i++] = (new imgItem("living_other_trunk", "Ant-1- (187)s", ""));			
       	imgList[i++] = (new imgItem("living_other_trunk", "Ind-a- (33)s", ""));			
 	imgList[i++] = (new imgItem("living_other_trunk", "Ant-1- (109)s", ""));
	
					   								   				
			
	imgList[i++] = (new imgItem("living_misc_mirror", "Elm-a- (100)s", ""));			
	imgList[i++] = (new imgItem("living_misc_mirror", "Elm-a- (101)s", ""));			
	imgList[i++] = (new imgItem("living_misc_mirror", "Elm-a- (102)s", ""));			
	imgList[i++] = (new imgItem("living_misc_mirror", "Elm-a- (106)s", ""));			
	imgList[i++] = (new imgItem("living_misc_mirror", "Ind-a- (50)s", ""));	
	imgList[i++] = (new imgItem("living_misc_mirror", "Elm-a- (10)s", ""));			
	imgList[i++] = (new imgItem("living_misc_mirror", "Elm-a- (43)s", ""));			
	imgList[i++] = (new imgItem("living_misc_mirror", "Elm-a- (69)s", ""));			
	imgList[i++] = (new imgItem("living_misc_mirror", "Elm-a- (114)s", ""));	


				
     		imgList[i++] = (new imgItem("art_carv", "Ant-1- (29)s", ""));				
       		imgList[i++] = (new imgItem("art_carv", "Ant-1- (37)s", ""));				
		imgList[i++] = (new imgItem("art_carv", "Ant-1- (52)s", ""));				
		imgList[i++] = (new imgItem("art_carv", "Ant-1- (139)s", ""));				
        	imgList[i++] = (new imgItem("art_carv", "Ant-1- (144)s", ""));				
		imgList[i++] = (new imgItem("art_carv", "Ant-1- (180)s", ""));				
  		imgList[i++] = (new imgItem("art_carv", "Pic-1- (1)s", ""));									
  		imgList[i++] = (new imgItem("art_carv", "Pic-1- (3)s", ""));				
  		imgList[i++] = (new imgItem("art_carv", "Pic-1- (4)s", ""));				
  		imgList[i++] = (new imgItem("art_carv", "Pic-1- (5)s", ""));				
  		imgList[i++] = (new imgItem("art_carv", "Pic-1- (6)s", ""));				
  		imgList[i++] = (new imgItem("art_carv", "Pic-1- (7)s", ""));				
  		imgList[i++] = (new imgItem("art_carv", "Pic-1- (8)s", ""));				
  		imgList[i++] = (new imgItem("art_carv", "Pic-1- (10)s", ""));				
  		imgList[i++] = (new imgItem("art_carv", "Pic-1- (12)s", ""));				
  		imgList[i++] = (new imgItem("art_carv", "Pic-1- (13)s", ""));				
  		imgList[i++] = (new imgItem("art_carv", "Pic-1- (14)s", ""));				
  		imgList[i++] = (new imgItem("art_carv", "Pic-1- (16)s", ""));				
  		imgList[i++] = (new imgItem("art_carv", "Pic-1- (20)s", ""));				
  		imgList[i++] = (new imgItem("art_carv", "Pic-1- (24)s", ""));				
  		imgList[i++] = (new imgItem("art_carv", "Pic-1- (27)s", ""));				
  		imgList[i++] = (new imgItem("art_carv", "Pic-1- (28)s", ""));				
  		imgList[i++] = (new imgItem("art_carv", "Pic-1- (36)s", ""));				
  		imgList[i++] = (new imgItem("art_carv", "Pic-1- (37)s", ""));				
  		imgList[i++] = (new imgItem("art_carv", "Pic-1- (38)s", ""));				
  		imgList[i++] = (new imgItem("art_carv", "Pic-1- (39)s", ""));				
  		imgList[i++] = (new imgItem("art_carv", "Pic-1- (40)s", ""));								
  		imgList[i++] = (new imgItem("art_carv", "Pic-1- (41)s", ""));				
  		imgList[i++] = (new imgItem("art_carv", "Pic-1- (42)s", ""));				
  		imgList[i++] = (new imgItem("art_carv", "Pic-1- (43)s", ""));				
  		imgList[i++] = (new imgItem("art_carv", "Pic-1- (44)s", ""));				
  		imgList[i++] = (new imgItem("art_carv", "Pic-1- (45)s", ""));				
  		imgList[i++] = (new imgItem("art_carv", "Pic-1- (46)s", ""));				
  		imgList[i++] = (new imgItem("art_carv", "Pic-1- (47)s", ""));				
  		imgList[i++] = (new imgItem("art_carv", "Pic-1- (48)s", ""));				
  		imgList[i++] = (new imgItem("art_carv", "Pic-1- (63)s", ""));				
  		imgList[i++] = (new imgItem("art_carv", "Pic-1- (64)s", ""));				
  		imgList[i++] = (new imgItem("art_carv", "Pic-1- (65)s", ""));				
  		imgList[i++] = (new imgItem("art_carv", "Pic-1- (66)s", ""));				
  		


 	imgList[i++] = (new imgItem("art_painting", "Pic-1- (15)s", ""));			
	imgList[i++] = (new imgItem("art_painting", "Pic-1- (22)s", ""));			
	imgList[i++] = (new imgItem("art_painting", "Pic-1- (25)s", ""));			
	imgList[i++] = (new imgItem("art_painting", "Pic-1- (26)s", ""));			
	imgList[i++] = (new imgItem("art_painting", "Pic-1- (29)s", ""));			
	imgList[i++] = (new imgItem("art_painting", "Pic-1- (30)s", ""));			
	imgList[i++] = (new imgItem("art_painting", "Pic-1- (31)s", ""));			
	imgList[i++] = (new imgItem("art_painting", "Pic-1- (32)s", ""));			
	imgList[i++] = (new imgItem("art_painting", "Pic-1- (34)s", ""));			
	imgList[i++] = (new imgItem("art_painting", "Pic-1- (35)s", ""));			
	imgList[i++] = (new imgItem("art_painting", "Pic-1- (50)s", ""));			
	imgList[i++] = (new imgItem("art_painting", "Pic-1- (51)s", ""));			
	imgList[i++] = (new imgItem("art_painting", "Pic-1- (52)s", ""));			
	imgList[i++] = (new imgItem("art_painting", "Pic-1- (53)s", ""));			
	imgList[i++] = (new imgItem("art_painting", "Pic-1- (54)s", ""));			
	imgList[i++] = (new imgItem("art_painting", "Pic-1- (55)s", ""));			
	imgList[i++] = (new imgItem("art_painting", "Pic-1- (56)s", ""));			
	imgList[i++] = (new imgItem("art_painting", "Pic-1- (57)s", ""));			
	imgList[i++] = (new imgItem("art_painting", "Pic-1- (58)s", ""));			
	imgList[i++] = (new imgItem("art_painting", "Pic-1- (59)s", ""));			
	imgList[i++] = (new imgItem("art_painting", "Pic-1- (60)s", ""));			
	imgList[i++] = (new imgItem("art_painting", "Pic-1- (61)s", ""));			
	imgList[i++] = (new imgItem("art_painting", "Pic-1- (62)s", ""));
	imgList[i++] = (new imgItem("art_painting", "Pic-1- (67)s", ""));				
	imgList[i++] = (new imgItem("art_painting", "Pic-1- (9)s", ""));			
	imgList[i++] = (new imgItem("art_painting", "Pic-1- (11)s", ""));			
	imgList[i++] = (new imgItem("art_painting", "Pic-1- (17)s", ""));
	imgList[i++] = (new imgItem("art_painting", "Pic-1- (49)s", ""));			
	imgList[i++] = (new imgItem("art_painting", "Pic-1- (69)s", ""));			
	imgList[i++] = (new imgItem("art_painting", "Pic-1- (33)s", ""));			
	imgList[i++] = (new imgItem("art_painting", "Pic-1- (70)s", ""));			
	imgList[i++] = (new imgItem("art_painting", "Pic-1- (71)s", ""));			
	imgList[i++] = (new imgItem("art_painting", "Pic-1- (72)s", ""));	
         
        imgList[i++] = (new imgItem("art_ceramic", "660s", ""));				
	    imgList[i++] = (new imgItem("art_ceramic", "661s", ""));			
	    imgList[i++] = (new imgItem("art_ceramic", "662s", ""));			
	    imgList[i++] = (new imgItem("art_ceramic", "664s", ""));			
	    imgList[i++] = (new imgItem("art_ceramic", "666s", ""));			
	    imgList[i++] = (new imgItem("art_ceramic", "667s", ""));			
	    imgList[i++] = (new imgItem("art_ceramic", "668s", ""));			
	    imgList[i++] = (new imgItem("art_ceramic", "669s", ""));			
    	imgList[i++] = (new imgItem("art_ceramic", "670s", ""));			
	    imgList[i++] = (new imgItem("art_ceramic", "671s", ""));			
	    imgList[i++] = (new imgItem("art_ceramic", "672s", ""));			
	    imgList[i++] = (new imgItem("art_ceramic", "673s", ""));			
	    imgList[i++] = (new imgItem("art_ceramic", "674s", ""));			
	    imgList[i++] = (new imgItem("art_ceramic", "675s", ""));			
	    imgList[i++] = (new imgItem("art_ceramic", "676s", ""));			
	    imgList[i++] = (new imgItem("art_ceramic", "677s", ""));			
	    imgList[i++] = (new imgItem("art_ceramic", "678s", ""));			
	    imgList[i++] = (new imgItem("art_ceramic", "679s", ""));			
	    imgList[i++] = (new imgItem("art_ceramic", "680s", ""));			
	    imgList[i++] = (new imgItem("art_ceramic", "681s", ""));			
	    imgList[i++] = (new imgItem("art_ceramic", "682s", ""));			
	    imgList[i++] = (new imgItem("art_ceramic", "683s", ""));			
	    imgList[i++] = (new imgItem("art_ceramic", "684s", ""));			
	    imgList[i++] = (new imgItem("art_ceramic", "685s", ""));			
	    imgList[i++] = (new imgItem("art_ceramic", "686s", ""));			
	    imgList[i++] = (new imgItem("art_ceramic", "687s", ""));			
	    imgList[i++] = (new imgItem("art_ceramic", "688s", ""));			
	    imgList[i++] = (new imgItem("art_ceramic", "689s", ""));			
	    imgList[i++] = (new imgItem("art_ceramic", "690s", ""));			
	    imgList[i++] = (new imgItem("art_ceramic", "692s", ""));			
	    imgList[i++] = (new imgItem("art_ceramic", "693s", ""));			
	    imgList[i++] = (new imgItem("art_ceramic", "694s", ""));			
	    imgList[i++] = (new imgItem("art_ceramic", "695s", ""));			
	    imgList[i++] = (new imgItem("art_ceramic", "696s", ""));			
	    imgList[i++] = (new imgItem("art_ceramic", "697s", ""));			
	    imgList[i++] = (new imgItem("art_ceramic", "698s", ""));			
	    imgList[i++] = (new imgItem("art_ceramic", "699s", ""));			
	    imgList[i++] = (new imgItem("art_ceramic", "700s", ""));			
	    imgList[i++] = (new imgItem("art_ceramic", "701s", ""));			
	    imgList[i++] = (new imgItem("art_ceramic", "702s", ""));			
	    imgList[i++] = (new imgItem("art_ceramic", "703s", ""));			
	    imgList[i++] = (new imgItem("art_ceramic", "704s", ""));			
	    imgList[i++] = (new imgItem("art_ceramic", "705s", ""));			
	    imgList[i++] = (new imgItem("art_ceramic", "706s", ""));			
	    imgList[i++] = (new imgItem("art_ceramic", "707s", ""));			
	    imgList[i++] = (new imgItem("art_ceramic", "708s", ""));			
	    imgList[i++] = (new imgItem("art_ceramic", "709s", ""));			
    	imgList[i++] = (new imgItem("art_ceramic", "710s", ""));			
	    imgList[i++] = (new imgItem("art_ceramic", "711s", ""));			
    	imgList[i++] = (new imgItem("art_ceramic", "712s", ""));			
	    imgList[i++] = (new imgItem("art_ceramic", "713s", ""));			
	    imgList[i++] = (new imgItem("art_ceramic", "715s", ""));			
	    imgList[i++] = (new imgItem("art_ceramic", "716s", ""));			
	    imgList[i++] = (new imgItem("art_ceramic", "717s", ""));			
	    imgList[i++] = (new imgItem("art_ceramic", "719s", ""));			
	    imgList[i++] = (new imgItem("art_ceramic", "720s", ""));			
    	imgList[i++] = (new imgItem("art_ceramic", "721s", ""));			
	    imgList[i++] = (new imgItem("art_ceramic", "722s", ""));			
	    imgList[i++] = (new imgItem("art_ceramic", "723s", ""));			
	    imgList[i++] = (new imgItem("art_ceramic", "724s", ""));			
	    imgList[i++] = (new imgItem("art_ceramic", "725s", ""));			
	    imgList[i++] = (new imgItem("art_ceramic", "726s", ""));			
	    imgList[i++] = (new imgItem("art_ceramic", "727s", ""));			
	    imgList[i++] = (new imgItem("art_ceramic", "728s", ""));			
	    imgList[i++] = (new imgItem("art_ceramic", "729s", ""));			
	    imgList[i++] = (new imgItem("art_ceramic", "730s", ""));			
	    imgList[i++] = (new imgItem("art_ceramic", "731s", ""));			
	    imgList[i++] = (new imgItem("art_ceramic", "732s", ""));			
	    imgList[i++] = (new imgItem("art_ceramic", "733s", ""));			
	    imgList[i++] = (new imgItem("art_ceramic", "734s", ""));			
	    imgList[i++] = (new imgItem("art_ceramic", "735s", ""));			
	    imgList[i++] = (new imgItem("art_ceramic", "736s", ""));			
	    imgList[i++] = (new imgItem("art_ceramic", "737s", ""));			
	    imgList[i++] = (new imgItem("art_ceramic", "738s", ""));			
	    imgList[i++] = (new imgItem("art_ceramic", "740s", ""));			
    	imgList[i++] = (new imgItem("art_ceramic", "741s", ""));			
	    imgList[i++] = (new imgItem("art_ceramic", "742s", ""));			
	    imgList[i++] = (new imgItem("art_ceramic", "743s", ""));			
	    imgList[i++] = (new imgItem("art_ceramic", "745s", ""));			
    	    imgList[i++] = (new imgItem("art_ceramic", "746s", ""));			
	    imgList[i++] = (new imgItem("art_ceramic", "748s", ""));			
	    imgList[i++] = (new imgItem("art_ceramic", "749s", ""));			
	    imgList[i++] = (new imgItem("art_ceramic", "750s", ""));			
    	   imgList[i++] = (new imgItem("art_ceramic", "751s", ""));			
	    imgList[i++] = (new imgItem("art_ceramic", "752s", ""));			
	    imgList[i++] = (new imgItem("art_ceramic", "753s", ""));			
	    imgList[i++] = (new imgItem("art_ceramic", "754s", ""));			
	    imgList[i++] = (new imgItem("art_ceramic", "755s", ""));			
	    imgList[i++] = (new imgItem("art_ceramic", "756s", ""));			
	    imgList[i++] = (new imgItem("art_ceramic", "757s", ""));			
	    imgList[i++] = (new imgItem("art_ceramic", "758s", ""));			
        	   imgList[i++] = (new imgItem("art_ceramic", "759s", ""));			
	    imgList[i++] = (new imgItem("art_ceramic", "760s", ""));			
    	   imgList[i++] = (new imgItem("art_ceramic", "761s", ""));			
	    imgList[i++] = (new imgItem("art_ceramic", "762s", ""));			
	    imgList[i++] = (new imgItem("art_ceramic", "763s", ""));			
	    imgList[i++] = (new imgItem("art_ceramic", "764s", ""));			
	    imgList[i++] = (new imgItem("art_ceramic", "765s", ""));			
	    imgList[i++] = (new imgItem("art_ceramic", "766s", ""));			
	    imgList[i++] = (new imgItem("art_ceramic", "767s", ""));			
	    imgList[i++] = (new imgItem("art_ceramic", "768s", ""));			
	    imgList[i++] = (new imgItem("art_ceramic", "769s", ""));			
	    imgList[i++] = (new imgItem("art_ceramic", "770s", ""));			
    	imgList[i++] = (new imgItem("art_ceramic", "771s", ""));			
    	imgList[i++] = (new imgItem("art_ceramic", "772s", ""));			
    	imgList[i++] = (new imgItem("art_ceramic", "773s", ""));			
    	imgList[i++] = (new imgItem("art_ceramic", "774s", ""));			
    	imgList[i++] = (new imgItem("art_ceramic", "775s", ""));			
    	imgList[i++] = (new imgItem("art_ceramic", "776s", ""));			
       	imgList[i++] = (new imgItem("art_ceramic", "777s", ""));			
    	imgList[i++] = (new imgItem("art_ceramic", "778s", ""));			
    	imgList[i++] = (new imgItem("art_ceramic", "779s", ""));			
    	imgList[i++] = (new imgItem("art_ceramic", "780s", ""));			
    	imgList[i++] = (new imgItem("art_ceramic", "781s", ""));			
    	imgList[i++] = (new imgItem("art_ceramic", "782s", ""));			
    	imgList[i++] = (new imgItem("art_ceramic", "783s", ""));			
    	imgList[i++] = (new imgItem("art_ceramic", "784s", ""));			
    	imgList[i++] = (new imgItem("art_ceramic", "785s", ""));			
    	imgList[i++] = (new imgItem("art_ceramic", "786s", ""));			
    	imgList[i++] = (new imgItem("art_ceramic", "787s", ""));			
    	imgList[i++] = (new imgItem("art_ceramic", "789s", ""));			
    	imgList[i++] = (new imgItem("art_ceramic", "790s", ""));			
    	imgList[i++] = (new imgItem("art_ceramic", "791s", ""));			
     	imgList[i++] = (new imgItem("art_ceramic", "793s", ""));			
    	imgList[i++] = (new imgItem("art_ceramic", "794s", ""));			
    	imgList[i++] = (new imgItem("art_ceramic", "795s", ""));			
    	imgList[i++] = (new imgItem("art_ceramic", "797s", ""));			
     	imgList[i++] = (new imgItem("art_ceramic", "798s", ""));			
    	imgList[i++] = (new imgItem("art_ceramic", "799s", ""));			
    	imgList[i++] = (new imgItem("art_ceramic", "800s", ""));			
    	imgList[i++] = (new imgItem("art_ceramic", "801s", ""));			
    	imgList[i++] = (new imgItem("art_ceramic", "802s", ""));			
    	imgList[i++] = (new imgItem("art_ceramic", "803s", ""));			
    	imgList[i++] = (new imgItem("art_ceramic", "804s", ""));			
    	imgList[i++] = (new imgItem("art_ceramic", "805s", ""));			
    	imgList[i++] = (new imgItem("art_ceramic", "806s", ""));			
    	imgList[i++] = (new imgItem("art_ceramic", "807s", ""));			
    	imgList[i++] = (new imgItem("art_ceramic", "808s", ""));			
    	imgList[i++] = (new imgItem("art_ceramic", "809s", ""));			
	imgList[i++] = (new imgItem("art_ceramic", "810s", ""));			
	imgList[i++] = (new imgItem("art_ceramic", "811s", ""));			
    	imgList[i++] = (new imgItem("art_ceramic", "812s", ""));			
    	imgList[i++] = (new imgItem("art_ceramic", "813s", ""));			
    	imgList[i++] = (new imgItem("art_ceramic", "og317s", ""));			
      	
       
       				
                    		
	


			
//	Living & Dining Room			
              
           imgList[i++] = (new imgItem("dining_tab", "Elm-a- (24)s", ""));	
           imgList[i++] = (new imgItem("dining_tab", "Elm-a- (126)s", ""));				
           imgList[i++] = (new imgItem("dining_tab", "Elm-a- (128)s", ""));				
           imgList[i++] = (new imgItem("dining_tab", "Elm-a- (137)s", ""));				
           imgList[i++] = (new imgItem("dining_tab", "Ind-a- (3)s", ""));
           imgList[i++] = (new imgItem("dining_tab", "Ind-a- (8)s", ""));
           imgList[i++] = (new imgItem("dining_tab", "Ind-a- (9)s", ""));				
           imgList[i++] = (new imgItem("dining_tab", "Ind-a- (12)s", ""));				
           imgList[i++] = (new imgItem("dining_tab", "Ind-a- (15)s", ""));				
           imgList[i++] = (new imgItem("dining_tab", "Ind-a- (17)s", ""));				
           imgList[i++] = (new imgItem("dining_tab", "Ind-a- (18)s", ""));				
           imgList[i++] = (new imgItem("dining_tab", "Ind-a- (36)s", ""))

		
          
	   imgList[i++] = (new imgItem("dining_ch", "Elm-a- (11)s", ""));			
    	   imgList[i++] = (new imgItem("dining_ch", "Elm-a- (31)s", ""));
	   imgList[i++] = (new imgItem("dining_ch", "Elm-a- (21)s", ""));			
    	   imgList[i++] = (new imgItem("dining_ch", "Elm-a- (29)s", ""));			
       	   imgList[i++] = (new imgItem("dining_ch", "Ind-a- (4)s", ""));			
           imgList[i++] = (new imgItem("dining_ch", "Ind-a- (20)s", ""));				
           imgList[i++] = (new imgItem("dining_ch", "Ind-a- (25)s", ""));				
           imgList[i++] = (new imgItem("dining_ch", "Ind-a- (45)s", ""));
	   imgList[i++] = (new imgItem("dining_ch", "Ant-1- (12)s", ""));
	   imgList[i++] = (new imgItem("dining_ch", "Ant-1- (140)s", ""));
	   imgList[i++] = (new imgItem("dining_ch", "Ant-1- (156)s", ""));
	   imgList[i++] = (new imgItem("dining_ch", "Ant-1- (160)s", ""));		
      
	   imgList[i++] = (new imgItem("dining_coffee_tab", "Ant-1- (46)s", ""));	
 	   imgList[i++] = (new imgItem("dining_coffee_tab", "Ant-1- (95)s", ""));	
	   imgList[i++] = (new imgItem("dining_coffee_tab", "Ant-1- (151)s", ""));	
 	   imgList[i++] = (new imgItem("dining_coffee_tab", "Ant-1- (153)s", ""));	
	   imgList[i++] = (new imgItem("dining_coffee_tab", "Ant-1- (191)s", ""));	
 	   imgList[i++] = (new imgItem("dining_coffee_tab", "Ant-1- (194)s", ""));	
	   imgList[i++] = (new imgItem("dining_coffee_tab", "Ant-1- (193)s", ""));	
      	   imgList[i++] = (new imgItem("dining_coffee_tab", "Elm-a- (15)s", ""));	
      	   imgList[i++] = (new imgItem("dining_coffee_tab", "Elm-a- (18)s", ""));				
      	   imgList[i++] = (new imgItem("dining_coffee_tab", "Elm-a- (32)s", ""));	  
           imgList[i++] = (new imgItem("dining_coffee_tab", "Elm-a- (44)s", ""));				
           imgList[i++] = (new imgItem("dining_coffee_tab", "Elm-a- (95)s", ""));				
           imgList[i++] = (new imgItem("dining_coffee_tab", "Elm-a- (133)s", ""));				
    	   imgList[i++] = (new imgItem("dining_coffee_tab", "Elm-a- (135)s", ""));
           imgList[i++] = (new imgItem("dining_coffee_tab", "Ind-a- (23)s", ""));				
      	   imgList[i++] = (new imgItem("dining_coffee_tab", "Ind-a- (39)s", ""));	  
           imgList[i++] = (new imgItem("dining_coffee_tab", "Ind-a- (47)s", ""));				
           imgList[i++] = (new imgItem("dining_coffee_tab", "Ind-a- (48)s", ""));	

	   
	   imgList[i++] = (new imgItem("dining_cab", "Ant-1- (73)s", ""));		
	   imgList[i++] = (new imgItem("dining_cab", "Ant-1- (96)s", ""));
	   imgList[i++] = (new imgItem("dining_cab", "Ant-1- (115)s", ""));
   	   imgList[i++] = (new imgItem("dining_cab", "Ant-1- (119)s", ""));
	   imgList[i++] = (new imgItem("dining_cab", "Ant-1- (123)s", ""));		
	   imgList[i++] = (new imgItem("dining_cab", "Ant-1- (129)s", ""));
	   imgList[i++] = (new imgItem("dining_cab", "Ant-1- (134)s", ""));
	   imgList[i++] = (new imgItem("dining_cab", "Ant-1- (136)s", ""));		
	   imgList[i++] = (new imgItem("dining_cab", "Ant-1- (3)s", ""));
	   imgList[i++] = (new imgItem("dining_cab", "Ant-1- (7)s", ""));		
	   imgList[i++] = (new imgItem("dining_cab", "Ant-1- (34)s", ""));
	   imgList[i++] = (new imgItem("dining_cab", "Ant-1- (48)s", ""));
	   imgList[i++] = (new imgItem("dining_cab", "Ant-1- (53)s", ""));		
	   imgList[i++] = (new imgItem("dining_cab", "Ant-1- (67)s", ""));
	   imgList[i++] = (new imgItem("dining_cab", "Ant-1- (70)s", ""));
   	   imgList[i++] = (new imgItem("dining_cab", "Ant-1- (89)s", ""));
	   imgList[i++] = (new imgItem("dining_cab", "Elm-a- (112)s", ""));
	   imgList[i++] = (new imgItem("dining_cab", "Elm-a- (116)s", ""));


 		imgList[i++] = (new imgItem("dining_cab_other", "Ant-1- (26)s", ""));
		imgList[i++] = (new imgItem("dining_cab_other", "Ant-1- (27)s", ""));
		imgList[i++] = (new imgItem("dining_cab_other", "Ant-1- (28)s", ""));
		imgList[i++] = (new imgItem("dining_cab_other", "Ant-1- (50)s", ""));
		imgList[i++] = (new imgItem("dining_cab_other", "Ant-1- (63)s", ""));
		imgList[i++] = (new imgItem("dining_cab_other", "Ant-1- (75)s", ""));
		imgList[i++] = (new imgItem("dining_cab_other", "Ant-1- (76)s", ""));
		imgList[i++] = (new imgItem("dining_cab_other", "Ant-1- (84)s", ""));
		imgList[i++] = (new imgItem("dining_cab_other", "Ant-1- (91)s", ""));
		imgList[i++] = (new imgItem("dining_cab_other", "Ant-1- (92)s", ""));
		imgList[i++] = (new imgItem("dining_cab_other", "Ant-1- (98)s", ""));
		imgList[i++] = (new imgItem("dining_cab_other", "Ant-1- (100)s", ""));
		imgList[i++] = (new imgItem("dining_cab_other", "Ant-1- (102)s", ""));
		imgList[i++] = (new imgItem("dining_cab_other", "Ant-1- (104)s", ""));
		imgList[i++] = (new imgItem("dining_cab_other", "Ant-1- (108)s", ""));
		imgList[i++] = (new imgItem("dining_cab_other", "Ant-1- (110)s", ""));
		imgList[i++] = (new imgItem("dining_cab_other", "Ant-1- (112)s", ""));
		imgList[i++] = (new imgItem("dining_cab_other", "Ant-1- (114)s", ""));
		imgList[i++] = (new imgItem("dining_cab_other", "Ant-1- (138)s", ""));
		imgList[i++] = (new imgItem("dining_cab_other", "Ant-1- (142)s", ""));
		imgList[i++] = (new imgItem("dining_cab_other", "Ant-1- (143)s", ""));
		imgList[i++] = (new imgItem("dining_cab_other", "Ant-1- (166)s", ""));
		imgList[i++] = (new imgItem("dining_cab_other", "Ant-1- (176)s", ""));
		imgList[i++] = (new imgItem("dining_cab_other", "Ant-1- (183)s", ""));
		imgList[i++] = (new imgItem("dining_cab_other", "Elm-a- (2)s", ""));
		imgList[i++] = (new imgItem("dining_cab_other", "Elm-a- (4)s", ""));
		imgList[i++] = (new imgItem("dining_cab_other", "Elm-a- (8)s", ""));
		imgList[i++] = (new imgItem("dining_cab_other", "Elm-a- (9)s", ""));
		imgList[i++] = (new imgItem("dining_cab_other", "Elm-a- (12)s", ""));
		imgList[i++] = (new imgItem("dining_cab_other", "Elm-a- (14)s", ""));
		imgList[i++] = (new imgItem("dining_cab_other", "Elm-a- (16)s", ""));
		imgList[i++] = (new imgItem("dining_cab_other", "Elm-a- (19)s", ""));
		imgList[i++] = (new imgItem("dining_cab_other", "Elm-a- (20)s", ""));
		imgList[i++] = (new imgItem("dining_cab_other", "Elm-a- (26)s", ""));
		imgList[i++] = (new imgItem("dining_cab_other", "Elm-a- (30)s", ""));
		imgList[i++] = (new imgItem("dining_cab_other", "Elm-a- (34)s", ""));
		imgList[i++] = (new imgItem("dining_cab_other", "Elm-a- (39)s", ""));
		imgList[i++] = (new imgItem("dining_cab_other", "Elm-a- (40)s", ""));
		imgList[i++] = (new imgItem("dining_cab_other", "Elm-a- (41)s", ""));
		imgList[i++] = (new imgItem("dining_cab_other", "Elm-a- (42)s", ""));
		imgList[i++] = (new imgItem("dining_cab_other", "Elm-a- (54)s", ""));
		imgList[i++] = (new imgItem("dining_cab_other", "Elm-a- (55)s", ""));
		imgList[i++] = (new imgItem("dining_cab_other", "Elm-a- (56)s", ""));
		imgList[i++] = (new imgItem("dining_cab_other", "Elm-a- (59)s", ""));
		imgList[i++] = (new imgItem("dining_cab_other", "Elm-a- (61)s", ""));
		imgList[i++] = (new imgItem("dining_cab_other", "Elm-a- (62)s", ""));
		imgList[i++] = (new imgItem("dining_cab_other", "Elm-a- (64)s", ""));
		imgList[i++] = (new imgItem("dining_cab_other", "Elm-a- (65)s", ""));
		imgList[i++] = (new imgItem("dining_cab_other", "Elm-a- (66)s", ""));
		imgList[i++] = (new imgItem("dining_cab_other", "Elm-a- (68)s", ""));
		imgList[i++] = (new imgItem("dining_cab_other", "Elm-a- (92)s", ""));
		imgList[i++] = (new imgItem("dining_cab_other", "Elm-a- (96)s", ""));
		imgList[i++] = (new imgItem("dining_cab_other", "Elm-a- (98)s", ""));
		imgList[i++] = (new imgItem("dining_cab_other", "Elm-a- (103)s", ""));
		imgList[i++] = (new imgItem("dining_cab_other", "Elm-a- (107)s", ""));
		imgList[i++] = (new imgItem("dining_cab_other", "Elm-a- (108)s", ""));
		imgList[i++] = (new imgItem("dining_cab_other", "Elm-a- (109)s", ""));
		imgList[i++] = (new imgItem("dining_cab_other", "Elm-a- (110)s", ""));
		imgList[i++] = (new imgItem("dining_cab_other", "Elm-a- (111)s", ""));
		imgList[i++] = (new imgItem("dining_cab_other", "Elm-a- (113)s", ""));
		imgList[i++] = (new imgItem("dining_cab_other", "Elm-a- (115)s", ""));
		imgList[i++] = (new imgItem("dining_cab_other", "Elm-a- (122)s", ""));
		imgList[i++] = (new imgItem("dining_cab_other", "Elm-a- (132)s", ""));
		imgList[i++] = (new imgItem("dining_cab_other", "Ind-a- (1)s", ""));
		imgList[i++] = (new imgItem("dining_cab_other", "Ind-a- (16)s", ""));
		imgList[i++] = (new imgItem("dining_cab_other", "Ind-a- (22)s", ""));
		imgList[i++] = (new imgItem("dining_cab_other", "Ind-a- (34)s", ""));
		imgList[i++] = (new imgItem("dining_cab_other", "Ind-a- (40)s", ""));
		imgList[i++] = (new imgItem("dining_cab_other", "Ind-a- (41)s", ""));
		imgList[i++] = (new imgItem("dining_cab_other", "Ind-a- (46)s", ""));
		imgList[i++] = (new imgItem("dining_cab_other", "Ind-a- (49)s", ""));
		imgList[i++] = (new imgItem("dining_cab_other", "Ind-a- (51)s", ""));








     		imgList[i++] = (new imgItem("Stylus", "stylus sofa 001s", ""));			
        	imgList[i++] = (new imgItem("Stylus", "stylus sofa 002s", ""));
           	imgList[i++] = (new imgItem("Stylus", "stylus sofa 003s", ""));			
        	imgList[i++] = (new imgItem("Stylus", "stylus sofa 004s", ""));
            	imgList[i++] = (new imgItem("Stylus", "stylus sofa 005s", ""));			
        	imgList[i++] = (new imgItem("Stylus", "stylus sofa 006s", ""));
           	imgList[i++] = (new imgItem("Stylus", "stylus sofa 007s", ""));			
        	imgList[i++] = (new imgItem("Stylus", "stylus sofa 008s", ""));
           	imgList[i++] = (new imgItem("Stylus", "stylus sofa 009s", ""));
	
		
//	Bedroom			
	imgList[i++] = (new imgItem("sleeping_bed", "Elm-a- (82)s", ""));			
    	imgList[i++] = (new imgItem("sleeping_bed", "Elm-a- (117)s", ""));			
	imgList[i++] = (new imgItem("sleeping_bed", "Ind-a- (24)s", ""));			
 	imgList[i++] = (new imgItem("sleeping_bed", "Ind-a- (31)s", ""));  	
	imgList[i++] = (new imgItem("sleeping_bed", "Ind-a- (53)s", ""));			
   	imgList[i++] = (new imgItem("sleeping_bed", "Ind-a- (21)s", ""));		
    	
	 imgList[i++] = (new imgItem("sleeping_cab", "Elm-a- (47)s", ""));			
	 imgList[i++] = (new imgItem("sleeping_cab", "Elm-a- (50)s", ""));			
	 imgList[i++] = (new imgItem("sleeping_cab", "Elm-a- (72)s", ""));			
 	 imgList[i++] = (new imgItem("sleeping_cab", "Ind-a- (6)s", ""));			
	 imgList[i++] = (new imgItem("sleeping_cab", "Ind-a- (26)s", ""));			
	 imgList[i++] = (new imgItem("sleeping_cab", "Ind-a- (32)s", ""));			
     	 imgList[i++] = (new imgItem("sleeping_cab", "Ind-a- (35)s", ""));			
	 imgList[i++] = (new imgItem("sleeping_cab", "Ant-1- (10)s", ""));			
     imgList[i++] = (new imgItem("sleeping_cab", "Ant-1- (20)s", ""));			
     imgList[i++] = (new imgItem("sleeping_cab", "Ant-1- (41)s", ""));			
     imgList[i++] = (new imgItem("sleeping_cab", "Ant-1- (80)s", ""));			
     imgList[i++] = (new imgItem("sleeping_cab", "Ant-1- (101)s", ""));			
     imgList[i++] = (new imgItem("sleeping_cab", "Ant-1- (116)s", ""));			
     imgList[i++] = (new imgItem("sleeping_cab", "Ant-1- (117)s", ""));			
     imgList[i++] = (new imgItem("sleeping_cab", "Ant-1- (57)s", ""));			
        	 	 	 		 	 	 	
		imgList[i++] = (new imgItem("Office_desk", "Ant-1- (31)s", ""));	
 		imgList[i++] = (new imgItem("Office_desk", "Ant-1- (36)s", ""));
		imgList[i++] = (new imgItem("Office_desk", "Ant-1- (43)s", ""));	
 		imgList[i++] = (new imgItem("Office_desk", "Ant-1- (68)s", ""));
		imgList[i++] = (new imgItem("Office_desk", "Ant-1- (85)s", ""));	
 		imgList[i++] = (new imgItem("Office_desk", "Ant-1- (167)s", ""));
		imgList[i++] = (new imgItem("Office_desk", "Ant-1- (185)s", ""));	
 		imgList[i++] = (new imgItem("Office_desk", "Ant-1- (186)s", ""));
		imgList[i++] = (new imgItem("Office_desk", "Ant-1- (61)s", ""));	
		imgList[i++] = (new imgItem("Office_desk", "Elm-a- (6)s", ""));	
 		imgList[i++] = (new imgItem("Office_desk", "Elm-a- (37)s", ""));
		imgList[i++] = (new imgItem("Office_desk", "Elm-a- (75)s", ""));	
 		imgList[i++] = (new imgItem("Office_desk", "Elm-a- (85)s", ""));
		imgList[i++] = (new imgItem("Office_desk", "Elm-a- (89)s", ""));	
 		imgList[i++] = (new imgItem("Office_desk", "Ind-a- (28)s", ""));
		
		imgList[i++] = (new imgItem("Office_shelves", "Ant-1- (106)s", ""));
		imgList[i++] = (new imgItem("Office_shelves", "Ant-1- (169)s", ""));
		imgList[i++] = (new imgItem("Office_shelves", "Elm-a- (27)s", ""));
		imgList[i++] = (new imgItem("Office_shelves", "Elm-a- (28)s", ""));
		imgList[i++] = (new imgItem("Office_shelves", "Elm-a- (124)s", ""));
		imgList[i++] = (new imgItem("Office_shelves", "Elm-a- (136)s", ""));
		imgList[i++] = (new imgItem("Office_shelves", "Ant-1- (113)s", ""));
		imgList[i++] = (new imgItem("Office_shelves", "Elm-a- (84)s", ""));
		imgList[i++] = (new imgItem("Office_shelves", "Ant-1- (66)s", ""));
		imgList[i++] = (new imgItem("Office_shelves", "Ant-1- (71)s", ""));
		imgList[i++] = (new imgItem("Office_shelves", "Ant-1- (64)s", ""));
		imgList[i++] = (new imgItem("Office_shelves", "Ant-1- (163)s", ""));
		imgList[i++] = (new imgItem("Office_shelves", "Elm-a- (5)s", ""));
		imgList[i++] = (new imgItem("Office_shelves", "Elm-a- (13)s", ""));
		imgList[i++] = (new imgItem("Office_shelves", "Elm-a- (36)s", ""));
		imgList[i++] = (new imgItem("Office_shelves", "Elm-a- (45)s", ""));
		imgList[i++] = (new imgItem("Office_shelves", "Elm-a- (51)s", ""));
		imgList[i++] = (new imgItem("Office_shelves", "Elm-a- (60)s", ""));
		imgList[i++] = (new imgItem("Office_shelves", "Elm-a- (63)s", ""));
		imgList[i++] = (new imgItem("Office_shelves", "Elm-a- (73)s", ""));
		imgList[i++] = (new imgItem("Office_shelves", "Elm-a- (83)s", ""));
		imgList[i++] = (new imgItem("Office_shelves", "Elm-a- (91)s", ""));
		imgList[i++] = (new imgItem("Office_shelves", "Elm-a- (93)s", ""));
		imgList[i++] = (new imgItem("Office_shelves", "Ind-a- (29)s", ""));





          imgList[i++] = (new imgItem("Posture Beauty", "mattress 005s", ""));	
          imgList[i++] = (new imgItem("Posture Beauty", "mattress 006s", ""));	
          imgList[i++] = (new imgItem("Posture Beauty", "mattress 007s", ""));	
           


//	Outdoor & Lighting			
        imgList[i++] = (new imgItem("Outdoor Photos", "Out-d- (1)s", ""));
 	  	imgList[i++] = (new imgItem("Outdoor Photos", "Out-d- (2)s", ""));
		imgList[i++] = (new imgItem("Outdoor Photos", "Out-d- (3)s", ""));
 	 	imgList[i++] = (new imgItem("Outdoor Photos", "Out-d- (4)s", ""));	
 	  	imgList[i++] = (new imgItem("Outdoor Photos", "Out-d- (6)s", ""));
		imgList[i++] = (new imgItem("Outdoor Photos", "Out-d- (7)s", ""));
 	 	imgList[i++] = (new imgItem("Outdoor Photos", "Out-d- (9)s", ""));
 	  	imgList[i++] = (new imgItem("Outdoor Photos", "Out-d- (10)s", ""));
		imgList[i++] = (new imgItem("Outdoor Photos", "Out-d- (11)s", ""));
           	
	
          imgList[i++] = (new imgItem("Lighting", "sh1001s", ""));
	  imgList[i++] = (new imgItem("Lighting", "sh2038s", ""));
	  imgList[i++] = (new imgItem("Lighting", "sh2040s", ""));	
	  imgList[i++] = (new imgItem("Lighting", "sh2042s", ""));
	  imgList[i++] = (new imgItem("Lighting", "sh2043s", ""));
	  imgList[i++] = (new imgItem("Lighting", "sh2050s", ""));
	  imgList[i++] = (new imgItem("Lighting", "sh2051s", ""));
	  imgList[i++] = (new imgItem("Lighting", "sh2058s", ""));
	  imgList[i++] = (new imgItem("Lighting", "sh2068s", ""));
			
         
        				
       

				
}				
				

