$(function(){
	$(".mediaFlash").media({
		width: 900,
		height: 500,
		attrs: {wmode:  'transparent'},
		params: {wmode:  'transparent'},
		bgColor: 'transparent'
	});
});


/* Handels media button clicks/effects */
var ytEmbedCode = '<object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/YTCODE&autoplay=1"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/YTCODE&autoplay=1" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object>';
$(function(){
	$("#mediaBox").hide();
	$("#showClip").click(function(){	
		if ($("#mediaBox").css("display")=="block")
		{
			$("#mediaBoxContent").empty();
			$("#mediaBox").fadeOut("slow");
		}
		else
		{
			$("#mediaBox").removeClass();
			$("#mediaBox").css({top: (($(window).height() / 2) - 195) + $(window).scrollTop(), left: ($(window).width() / 2) - 235});
			$("#mediaBox").addClass("vBox");
			$("#mediaBoxContent").html(ytEmbedCode.replace(/YTCODE/g, $(this).attr("rel")));

			$("#mediaBox").fadeIn("slow");
		}
		return false;
	});
	
	$("#mediaBoxClose").click(function(){
		$("#mediaBoxContent").empty();
		$("#mediaBox").fadeOut("slow");
		return false;
	});
});
