// JavaScript Document
$(document).ready(function(){	
	$("a").click(function(e){
		if (window.StartPlayer && ($(this).hasClass("start-player"))) {
			StartPlayer();
			
			e.preventDefault();
				
			$('html, body').animate({
				scrollTop: $("#video-menu").offset().top
			}, 500);
		}
	});
});
