/* Sarna Lapine */
/* Functions
----------------------------------------------------------------------------- */
	

/* LOAD FUNCTION
----------------------------------------------------------------------------- */


	$(document).ready(function() {
	
		$('#news').hide();
		$('#about').hide();
		$('#film').hide();
		$('#theater').hide();
		$('#contact').hide();
	
	
/* ACTIONS / TOGGLE SECTIONS
----------------------------------------------------------------------------- */


		$('a.news').click(function() {
		$('#news').slideToggle(200);
		return false;
		});
		
		$('a.about').click(function() {
		$('#about').slideToggle(300);
		return false;
		});
		
		$('a.film').click(function() {
		$('#film').toggle(400);
		return false;
		});
		
		$('a.theater').click(function() {
		$('#theater').toggle(400);
		return false;
		});
		
		$('a.contact').click(function() {
		$('#contact').slideToggle(200);
		return false;
		});


/* END LOAD FUNCTION
----------------------------------------------------------------------------- */


	})

