
com._startup_items.push(function(){
	
	var myLBXSet = null;
	var dat = [];
	var tmp = com.E("td.LBX");
	var count = 0;
	var template = {
		closeButton : { label : "/shared/img/common/_lig_but_clo.gif" },
		prevButton  : { label : "/shared/img/common/_lig_but_pre.gif", position : "top left outset", style : { margin : "154px 0px 0px 0px" } },
		nextButton  : { label : "/shared/img/common/_lig_but_nex.gif", position : "top right outset", style : { margin : "154px 0px 0px 0px" } }
	};
	
	tmp.each(function(index,item){
		var img = item.E("img")[0];
		var des = item.E("span")[0];
		dat[index] = {
			"index" : index,
			keyObject : item,
			src : img.getAttribute("longdesc"),
//			src : img.src.replace("_S.jpg","_L.png"),
			"dat" : { viewerWidth : 600, description : des.innerHTML, descriptionStyle : { color : "#ffffff", fontSize : "12px", lineHeight : 1.5, textAlign : "center" } }
		};
		count++;
		if(count >= tmp.length) myLBXSet = new com.LBXSet(dat,template);
		
		item.onmouseover = function(){ this.setStyle({ border : "1px solid #FFCC00" }); };
		item.onmouseout  = function(){ this.setStyle({ border : "1px solid #666666" });};
	});
	
	
	
});
