setTimeout(scrollTo, 0, 0, 1);
var default_content="";

/* video js */
VideoJS.setupAllWhenReady();

$(document).ready(function () {
	
	//Selection Rollover effect
	$(".selection").hover(function(){
		$(".hoverinfos", this).stop().fadeTo(200,1);
	}, function() {
		$(".hoverinfos", this).stop().fadeTo(700,0);
	});
	
	
	//Scroll to top function
  $('a.gototop').click(function(){
    $('html, body' ).animate( { scrollTop: 0 }, 400 );
  });	

});
