function closevideo() {
	$('#movie').css('backgroundImage', 'none')
	$('#movie').fadeOut(300, function() {
		$('#movie').css('backgroundImage', bg)
	});
	$('html').unbind('click');
	$('html').unbind('keyup');
}

$(function() {
	
	var watched = 0;
	bg = $('#movie').css('backgroundImage');
	
	$('.noscript').remove();
	
	swfobject.embedSWF("/www.suicide-prevention.org.uk/includes/flash/player.swf", "_movie", "507", "310", "9","/www.suicide-prevention.org.uk/includes/flash/player.swf", {
		file:'video.flv',
		autostart : true,
		stretching : 'fill',
		skin: '/www.suicide-prevention.org.uk/includes/flash/dangdang.swf'
	}, {
		wmode: 'opaque'
	})
	
	$('a.tv_ad').click(function(e) {
		
		if (!watched && typeof(pageTracker) == 'object') {
			pageTracker._trackEvent('video', 'play', 'choose-life-tv-ad')
			watched = 1;
		}
		
		$('#movie').css('backgroundImage', 'none')
		$('#movie').fadeIn(300, function() {
			
			$('#movie').css('backgroundImage', bg)
			
			$('#movie').click(function(e) {
				e.stopPropagation();
			})
			
			$('html').click(function(e) {
				if ($('#movie').css('display') != 'none') closevideo()
			})
			
			$('html').keyup(function(e) {
				if (e.which == 27) closevideo()
			})
			
		})
		e.preventDefault();
		
	})
	
	$('#close').click(function(e) {
		closevideo()
		e.preventDefault()
	})

})
