$(document).ready(function() {
	Cufon.replace('#header h1, #main-feature p', { fontFamily: 'Dax' });
	
	$('#secondary-nav a').click(function() {
		$('.page_area').hide();
		$('#secondary-nav a').removeClass('selected');
		
		$('#' + this.id.replace('_link', '')).show();
		$(this).addClass('selected');
		
		return false;
	});
	
	$('#technical_details').hide();
	
	$("a.fancybox").fancybox();
	$("#movie").fancybox();
	$("#movie2").fancybox();
	$("#various2").fancybox({
				'width'			: '640',
				'height'			: '480',
				'autoScale'			: false,
				'transitionIn'		: 'none',
				'transitionOut'		: 'none',
				'type'				: 'iframe'
			});
});

			
