function flashdetect(){
	$('.media').each(function(){
		$(this).html("").flash({
			src: $(this).attr("href"),
			width: $(this).css("width"),
			height: $(this).css("height")
		});
		$(this).removeClass("media");
		$(this).addClass("flashbox");
	});
};
$("document").ready(function(){flashdetect();});