$(document).ready(function(){
	
	$('div.ngg-galleryoverview a').lightBox({
			fixedNavigation: true,
			imageLoading: '/wp-content/themes/sqco/js/images/loading.gif',
			imageBtnClose: '/wp-content/themes/sqco/js/images/close.gif',
			imageBtnPrev: '/wp-content/themes/sqco/js/images/prev.gif',
			imageBtnNext: '/wp-content/themes/sqco/js/images/next.gif'
		 	});
		
	var scope = $.url.param("scope");
	
	if (scope == "future") {
		$('.right ul.nav li:first').addClass("here");
		$('.left h1').html("Upcoming Events");
	}
	
	if (scope == "past") {
		$('.right ul.nav li:last').addClass("here");
		$('.left h1').html("Past Events");
	}
					
});

