jQuery(document).ready(function() {

	$('#promotion_video').click(function() {
		$('#videocontainer').show();
		$.fancybox({
			'href'			: '#videocontainer',
			'onClosed'      : function() {
			$('#videocontainer').hide();
		}
				
		});
	});
	
	$('#sport_video_fitline').click(function() {
		$('#videocontainer').show();
		$.fancybox({
			'href'			: '#videocontainer',
			'onClosed'      : function() {
			$('#videocontainer').hide();
		}
				
		});
	});
	
});