//<![CDATA[

/**
 * Busca las imágenes insertadas en Administra y les activa el thickbox
 * @author usaelraton.com
 */
function activarImagenes()
{
	$("img.galeria").each(function()
	{
		$(this).wrap("<a class='thickbox' href='" + $(this).attr("src").replace("miniatura", "ampliacion") + "'></a>");
	});
	
	$(".thickbox").not("[href*=inline]").removeAttr("rel");
	$(".thickbox").not("[href*=inline]").attr("rel", "galeria");
}

/**
 * Busca los vídeos pre-insertados en Administra y los reemplaza por el vídeo original
 * @author usaelraton.com
 */
function activarVideos()
{
	$("img.video").each(function()
	{
		var ancho = $(this).attr("width");   
		var alto = $(this).attr("height");
		var ruta = decodeURI($(this).attr("title"));
		
		$(this).replaceWith(
			"<object type='application/x-shockwave-flash' data='" + ruta + "' width='" + ancho + "' height='" + alto + "'>" +
			"<param name='movie' value='" + ruta + "' />" +
			"</object>"
		);
	});
	
	$("object").wrap("<div style='text-align:center;'></div>");
}

$(document).ready(
	function(e)
	{
		activarImagenes();
		activarVideos();
		$(".fecha-hora").append(' <acronym title="Central European Time (Hora de Europa Central)">C.E.T.</acronym>');
	}
);

//]]>