function Theme(catID, barImg)
{
	this.catID = catID;
	this.barImg = barImg;
}

var themeArr = new Array();
/*
themeArr[themeArr.length] = new Theme("01", "bar/xmas.jpg");
themeArr[themeArr.length] = new Theme("02", "bar/halloween.jpg");
themeArr[themeArr.length] = new Theme("03", "bar/easter.jpg");
themeArr[themeArr.length] = new Theme("04", "bar/stpatrick.jpg");
themeArr[themeArr.length] = new Theme("05", "bar/valentine.jpg");
themeArr[themeArr.length] = new Theme("06", "bar/thanksgiving.jpg");
themeArr[themeArr.length] = new Theme("07", "bar/mardigras.jpg");
themeArr[themeArr.length] = new Theme("08", "bar/newyear.jpg");
themeArr[themeArr.length] = new Theme("09", "bar/other.jpg");
themeArr[themeArr.length] = new Theme("10", "bar/hot.jpg");
*/

for (var idx=0;idx!=11;idx++)
{
  if (idx<10)
    themeArr[themeArr.length] = new Theme(idx, "bar/Perfectech_0" +idx+ ".jpg");
  else
    themeArr[themeArr.length] = new Theme(idx, "bar/Perfectech_" +idx+ ".jpg");
}

themeArr[themeArr.length] = new Theme("other", "bar/none.jpg");
