//PAGE FUNCTIONS
		$(document).ready(function() {
			$('a[rel="external"]').attr('target','_blank');
			var FullscreenrOptions = { width: 1000, height: 650, bgID: '#background' };
			jQuery.fn.fullscreenr(FullscreenrOptions);
			$('.press-link, .schedule-link').hover(
				function() {
					$(this).css('color','#FFFFFF');
					$(this).css('cursor','pointer');
				},
				function() {
					$(this).css('color','#000000');
					$(this).css('cursor','default');
				}
			);
			$('.press-link').click(function(){
				window.scroll(0,0);
				var theID = $(this).attr('id');
				var id = theID.split('-');
				$('.press-block').css('display','none');
				$('#press-'+id[1]).css('display','block');
				$('.press-link span').attr('id','');
				$('#link-'+id[1]+' span').attr('id','selected');
			});
			$('.schedule-link').click(function(){
				window.scroll(0,0);
				var theID = $(this).attr('id');
				var id = theID.split('-');
				$('.schedule-block').css('display','none');
				$('#schedule-'+id[1]).css('display','block');
				$('.schedule-link span').attr('id','');
				$('#link-'+id[1]+' span').attr('id','selected');
			});
		});
		/*CONTACT POPUP BOX*/
		function openContact() { $('#contact').fadeIn(500); }
		function closeContact() { $('#contact').fadeOut(500); }

