$(document).ready(function () {
	initGallery();
});
function initGallery(){
	$(".lightbox img").bind("click",function(){
		$('<img  src="'+ this.src +'" />').lightBox({isClose:{alpha:true}});
	});
	
}

