(function($) {
	
	$(document).ready(function() {
		$("flvvideo").each(function(index) {
			var _w = $(this).attr("width"), _h = $(this).attr("height"),
				_src = $(this).attr("source"), _vars = $(this).attr("flashvars"), _flashvars = {};
			if( _src == "" ) return;
			if( !_w ) _w = 545;
			if( !_h ) _h = 420;
			if( $(this).attr("id") == "" ) $(this).attr("id", "video_" + index + "_holder");
			if( _vars ) {
				var _v = _vars.split("&");
				for( var _k in _v ) {
					var _kvp = _v[_k].split("=");
					_flashvars[ _kvp[0] ] = _kvp[1];
				}
			}
			swfobject.embedSWF( _src, $(this).attr("id"), _w, _h, "9,0,0,0", false, _flashvars, { wmode: "transparent", quality: "high", allowFullScreen: true, allowScriptAccess: "always" } );
		});
	});
	
})(jQuery);
