var SnepoFrontGallery = SnepoFrontGallery? SnepoFrontGallery : function(){

	return{
		Init : function(){
			var galleries = $('.snepo-gallery').each(function(index){
				var galleryDiv = $(this);
				var preview = $('.snepo_gallery_preview', galleryDiv);
				var gallery = $('.gallery-files-holder a[rel="'+preview.attr('id').replace('rel_','')+'"]',galleryDiv).colorbox({
					'left' : 60,
					'maxWidth' : 800,
					'current' : "{current}/{total}",
					onLoad:function(){ $('#cboxContent').css('padding','20px 85px 90px 20px');}
					
				});
				preview.bind('click',function(e){
					e.preventDefault();
					gallery.eq(0).click();
					return false;
				});
				
			});
		}
	}
}();

$(document).ready(
    function(){
    	SnepoFrontGallery.Init();
    }
);
