$(document).ready(function(){
	$("#video_embed_link").click(function(){
		$("#embed").slideUp().after(
			$("<div>Choose a skin for the video player:</div>").hide().addClass("embed_skin")
			.append($("<div><input type='radio'></input> Modern</div>").find("input").addClass("embed_skin_ewt").parent().css({ display:"block" }))
			.append($("<div><input type='radio'></input> Worms (KB style)</div>").find("input").addClass("embed_skin_wkb").parent().css({ display:"block" }))
		);
		$(".embed_skin input").click(function(){
			$(".embed_skin").slideUp();
			var chosen_skin = $(this).attr("class").split("_");
			$("#video_embed textarea").text($("#video_embed textarea").text().replace(/%PLAYER_SKIN%/,"&skin=" + chosen_skin[2]));
			$("#video_embed textarea").slideDown().click();
		});
		$(".embed_skin").slideDown();
	});
	var embed_animated = false;
	$("#video_embed textarea").css({ overflow: "hidden" }).click(function(){
		if (! embed_animated)
		{
			$(this).animate({ height : $(".narrow").length ? "7em" : "4.5em", marginTop : "0.8em" }, 300, function(){ 
				$(this).select()
				.after($("<div>Copy the code above and paste it in your website or blog post</div>").css({ fontSize : "0.8em", fontStyle : "italic", display : "none" }))
				.next().fadeIn();
			});
			embed_animated = true;
		}
		else
			$(this).select();
	});
});
