$(document).ready(function(){
	$(".extra_info").hide();	// hide "More info"

	selectedFilm = window.location.hash;
	
	if(selectedFilm == "" || $(selectedFilm) == null) { // if a film hasn't been specified, or the specified value is invalid, load the newest film
		$('.film_box').not($('.film_box').first()).hide();	// hide all but first film
		current='#balls';
	} else {
		$('.film_box').not($(selectedFilm)).hide();
		current=selectedFilm;
		$.scrollTo(0,0); // browser will open at bottom of page, at top of the initially hidden film box, so scroll to the top
	}
	
});

function changefilm(element) {
	$(current).hide();
	$('#'+element).show();
	$.scrollTo(0, 500);
	current = '#'+element;
}

function toggle(box) {
	$('#'+box).slideToggle();
}

