
	$(document).ready(function() {
		/*
		*	Gallery selector
		*/

		$(".selector").click(function() {
			$('ul', this).toggle();	
		}).bind("mouseleave", function() {
			$('ul', this).hide();	
		});
		
		
		/*
		*	Gallery filter
		*/
		
		$("#gallery_filter").click(function() {
			
			var ids = '';
		
			$("#gallery_list input:checked").each(function() {
				ids += $(this).val() + '|';
			});
			
			location.href = '?ids=' + ids;
			
		});
		
		/*
		*	Lightbox
		*/
		
		
		$("a.lightbox").attr('rel', 'gal').fancybox({
			'padding'	: 0	
		});
		
		if ($.support.opacity && $("a.view").length < 1) {
			$("#fancybox-outer").css({
				'backgroundColor'	: "transparent",
				'backgroundImage'	: "url(/scripts/web/fancybox/fancy_bg.png)"
			});
		}
		
		$("a.view").fancybox({
			'padding'		: 20,
			'transitionIn'	: 'none',
			'transitionOut'	: 'none'
		});
		
	});
	

