jQuery.fn.extend({
  scrollTo : function(speed, easing) {
    return this.each(function() {
      var targetOffset = $(this).offset().top;
      $('html,body').animate({scrollTop: targetOffset}, speed, easing);
    });
  }
});


function goto(element){
	$('#'+element).scrollTo(1000);
}

function viewVideo(num){
	var embed = $('#video'+num).html();
	$.prompt(embed);
}
