$(function() {
	
	$("div.content-header a").click(function() {		
		$(this).fadeOut("normal", function() {
			var div = $(this).parent();
			div.attr("id", "flash");
			//div.html('<p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" /></a></p>');
			$("div.content-header").flash({
				swf : "/flash/PlayerVideo.swf",
				width: "100%",
				height: "100%"
				
			});
			//swfobject.registerObject("flash", "9.0.0", "/flash/video_intro_TEN.flv");
			//div.fadeIn("normal");
		});
		return false;
	});

});