$(document).ready(function() {
	$("a.watch_video").click(function() {
		if($("section#video").length == 0) {
			$("div#content").append('<section id="video"><p class="close"><a href="" title="Close Video">Close Video</a></p><iframe src="http://www.youtube.com/embed/_muVV2nhDBk?autoplay=1&rel=0"></iframe></section>');
			$("section#video").css('left', ($(window).width() / 2) - ($("section#video").outerWidth() / 2));
		}
		return false;		
	});
	
	$("section#video p.close a").live("click", function() {
		$("section#video").remove();
		return false;
	});
});
