// JavaScript Document
Shadowbox.loadSkin('classic', '/public/resources/js/shadowbox/skin');
Shadowbox.loadLanguage('en', '/public/resources/js/shadowbox/lang');
Shadowbox.loadPlayer(['img'], '/public/resources/js/shadowbox/player');

$(document).ready(function() {
	Shadowbox.init();
	$("a.select-all").click(function(e) {
		$("."+$(this).attr('rel')).attr('checked', 'checked');
	});
	$("a.select-none").click(function(e) {
		$("."+$(this).attr('rel')).removeAttr('checked');
	});
});