//functions for making the gallery page

//load em
$(document).ready(function(){
	$('.timeline').hide();
	
	$('.teaser').hover(function(){
		$(this).addClass('teaserPop');
	}, function(){
		$(this).removeClass('teaserPop');					
	});
	
	$('.teaser').click(function(){
		$(this).next('.timeline').slideToggle('slow');							
	});
	
	$('#gallery a').lightBox({fixedNavigation:true});

});
