myFlashLightBoxInjector = {
	appendElement : function(link, title, id, setId) {
		jQuery('body').append('<a href="' + link + '" title="' + title + '" id="' + id + '" rel="prettyPhoto[gallery]" style="display:none">' + link + '</a>');
	},
	start	: function(type, title, description, path, index) {

		jQuery('a[rel^="prettyPhoto"]:eq('+index+')').trigger('click');
		
	},
	updateImageList : function(){
		jQuery("a[rel^='prettyPhoto']").prettyPhoto({
			theme:'light_rounded'
		});
	}
}