$(function(){
  $('a.registration-call-to-action').click(function(){
    $('#registration-form').fadeIn('slow');
    
  });
  
  $().UItoTop({ easingType: 'easeOutQuart' });
  
  $.localScroll();
  
  // Load dialog on click
  	$('.play-video').click(function (e) {
  		$('#video').modal();
  		$('#video').html('<iframe width="640" height="390" src="http://www.youtube.com/embed/hb-LZdhap34?rel=0&amp;autoplay=1;hd=1" frameborder="0" allowfullscreen></iframe>');
  		
  		return false;
  	});
  	
  	$('a.simplemodal-close').live('click', function(){
  	  $('#video').html();
  	});
  	
  	
  	$('body.home a.home-link').addClass('current');
  	$('body.page-id-63 a.sessions-link').addClass('current');
  	$('body.page-id-38 a.info-link').addClass('current');
  	$('body.page-id-40 a.events-link').addClass('current');
  	
});


