$(function(){
	
    $('.galleryimg a').lightBox();
	
	$('#js_selectall').click(function(){
		$('input[type=checkbox]').attr('checked','true');
	});
	
	$('#js_deselectall').click(function(){
		$('input[type=checkbox]').attr('checked','');
	});
	
	$('#js_download').click(function(){
		if ($('input:checked').length == 0) {
			alert("No files selected.");
			return false;
		}
	});
	
});
