$(document).ready(function(){
		function objectFlashFLV(pstrRuta, pintAncho, pintAlto){
			var obj = document.createElement("object");		
			obj.setAttribute("type","application/x-shockwave-flash");
			obj.setAttribute("width",pintAncho);
			obj.setAttribute("height",pintAlto);
			obj.setAttribute("data","swf/player_flv_maxi.swf");
			
			var par1 = document.createElement("param");
			par1.setAttribute("name","movie");
			par1.setAttribute("value","swf/player_flv_maxi.swf");
			
			var par2 = document.createElement("param");
			par2.setAttribute("name","allowFullScreen");
			par2.setAttribute("value","true");
			
			var par3 = document.createElement("param");
			par3.setAttribute("name","FlashVars");
			par3.setAttribute("value","flv=../"+pstrRuta+"&showstop=1&startimage=swf/startvideo.jpg&showiconplay=0&showtime=1&showvolume=1&showloading=always&showfullscreen=1&showplayer=always&ondoubleclick=fullscreen&showmouse=autohide");
			
			obj.appendChild(par1);
			obj.appendChild(par2);
			obj.appendChild(par3);
			return obj;
		};
		
		$("a.videoflv").each(function(){
			$(this).replaceWith(objectFlashFLV($(this).attr("href"), "410", "308"));
		});		
	
	});