var collection = {
	setGlobals: function() {
		//
	},
	
	setVideo: function() {
		video.init();
	}
};

jQuery(document).ready(function(){
	//collection.setGlobals();
	collection.setVideo();
	
	if(document.location.hash.indexOf('video') != -1) {
		setTimeout(function(){
			video.openLinks.click();
		}, 500);
	}
					
});