jQuery(document).ready(function($) {
	
	var speed = 500;
	
	$("a.seeus").click(function(event) {
		event.preventDefault();
		
		$("#video").fadeIn(speed);
		
	});
	
	$("#video a.close").click(function(event) {
		event.preventDefault();
		
		$("#video").fadeOut(speed);
	});
	
});

