YAHOO.namespace ("YAHOO.lightBox");
YAHOO.lightBox.config = {};
YAHOO.lightBox.model = {
	display:{
		gallery:false,
		showTitle:false,
		showDesc:false,
		showCount:false,
		slideshow:false
	},
	transitions:{
		fade:0.6,
		size:0.6
	},
	window:{
		modal:false,
		dragable:true
	},
	easing:{
		global:YAHOO.util.Easing.easeBothStrong
	},
	position:{
		placement: "absolute"
	},
	controls:{
		paging:false,
		showCloseBtn:true,
		showPrevBtn:false,
		showNextBtn:false
	}
};
YAHOO.util.Event.onDOMReady(function(){
	YAHOO.lightBox.containers = YAHOO.util.Dom.getElementsByClassName("lightBoxContainer", "div");
	for (var i = 0; i < YAHOO.lightBox.containers.length; i++){
		YAHOO.lightBox.config["thumbs" + (i + 1)] = YAHOO.lightBox.model;
	}
});
		