jQuery(document).ready(function($){
	
	//Setup screenshots lightbox
	$("a[rel^='prettyPhoto']").prettyPhoto({
		showTitle:false,
		theme:'dark_rounded'
	});
	
	//Setup Event galleries
	$('#section-events > ul > li').each(function(){
		
		//Set initial hero img
		$('img.event-hero',this).attr('src',base_url + 'files/' + $('ul li:first-child a',this).attr('rel') );
		
		//Add click-handlers to thumbnails
		$('ul li a',this).click(function(){
			$(this).parent().parent().parent().find('img.event-hero').attr('src',base_url + 'files/' + $(this).attr('rel') );
			return false;
		});
		
	});
	
});