(function($){

	// $('#slides').cycle({
	//     pager: '.slide-selector'
	//   });
	
	$("#video a").click(function() {
	  // setup overlay
	  $("#overlay").css({
	    width: $(document).width(),
	    height: $(document).height()
	  });
	  $("#overlay").fadeIn();
	  $(".video-js-box").fadeIn();
	  return false;
	});
	
	$("#overlay").click(function() {
	  $("#overlay").hide();
	  $(".video-js-box").fadeOut();
	});
	
	$("#close").click(function() {
	  $("#overlay").hide();
	  $(".video-js-box").fadeOut();
	  return false;
	});
	
	$('a#send').click( function() {
		$.post($(this).attr("href"), $("form").serialize());
		$("form").slideUp('slow', function() {
			$(".message").fadeIn();
		});
		return false;
	});

})(jQuery);
