$(document).ready(function(){
	/*Helper Class Hooks*/
	 $('.hentry:last, #menu-schedule-nav li:last').addClass('last');
	 
	/*Homepage slideshow*/
	$('.slideshow').cycle({ 
		fx: 'fade',
		speed: 1000, 
		timeout: 1000  
	});
	
	/*Homepage Video Modal*/
	var videoCode = $(".video-code").html();
	$( ".intro-video" ).dialog({
			autoOpen: false,
			show: "fade",
			modal:true,
			open: function() {
				$(".video-code").html(videoCode);
			},
			close: function() {
				$('.intro-video').dialog('disable');
			},
			width:320
		})
	$( ".launch-video" ).click(function() {
			$('.intro-video').dialog('open');
			return false;
		});
	$( ".intro-video .close" ).click(function() {
			$('.intro-video').dialog('close');
			return false;
		});
});
