	$(document).ready( function() {
		
		$("#nav a:not(.current)").hover(
		  function () {
			$(this).parent().addClass("current");
		  }, 
		  function () {
			$(this).parent().removeClass("current");
		  }
		);

        $(".close").click( function() { $("#facebox").fadeOut('slow'); } );
		var inter = setTimeout(function() { $("#facebox").fadeOut('slow'); clearInterval(inter); } , 5000);

		$(".filmstrip a, .fancy").fancybox({
			'speedIn'		:	600,
			'speedOut'		:	200,
			'overlayColor'  :	'#000',
			'overlayOpacity':   0.5,
			'overlayShow'	:	true,
			'titlePosition': 'over'
		});

		

	}) ;
