$(function() {
	$('.showAlbum').live('click',function(){
		var action = $(this).attr('href');
		action = action.replace(new RegExp("^[/]+", "g"), "");
		var light = new CalcunLightbox({
			action: action,
			title : '',
			content: 'html',
			width: 600,
			height: 425,
			callback: function() {
				Galleria.loadTheme('/Library/Js/galleria/themes/classic/galleria.classic.js');
				$('#gallery').galleria();
				$('.popup_header .title').text($('#gallery .title').text());
			}
		});
		light.show();
		return false;
	});
});
