	/*------------------------------------------------------------*/	var frwBannerRot_tiempo = 40; var frwBannerRot_espera = 2000; var frwBannerRot_velocidad = 6;	/*------------------------------------------------------------*/		frwBannerRot_tam_banner = document.getElementById("fr_banner").offsetWidth;	frwBannerRot_alto_banner = document.getElementById("fr_banner").offsetHeight;		var frwBannerRot_x = frwBannerRot_tam_banner;	var frwBannerRot_y = frwBannerRot_tam_banner;    var frwBannerRot_cad = "";	var frwBannerRot_indice = 0;	    function frwBannerRot_cargar(){        for(i in frwBannerRot_imgs) frwBannerRot_cad = frwBannerRot_cad + "<img src='" + frwBannerRot_imgs[i] + "' width='" + frwBannerRot_tam_banner + "' height='" + frwBannerRot_alto_banner + "' />";		div = document.createElement("div");		div.style.width = frwBannerRot_imgs.length * frwBannerRot_tam_banner + "px";		div.style.height = frwBannerRot_alto_banner + "px";		div.style.position = "absolute";		div.id = "frwBannerRot_banner_cont";		document.getElementById("fr_banner").appendChild(div);		div.innerHTML = frwBannerRot_cad;				frwBannerRot_calcula();    }		function frwBannerRot_calcula() {		frwBannerRot_x = frwBannerRot_y / frwBannerRot_velocidad;		frwBannerRot_y = frwBannerRot_y - frwBannerRot_x;		if (frwBannerRot_x > 0.1) {			document.getElementById("frwBannerRot_banner_cont").style.left = parseInt(frwBannerRot_indice * frwBannerRot_tam_banner * -1) + parseInt(frwBannerRot_y) + "px";			window.setTimeout("frwBannerRot_calcula()",frwBannerRot_tiempo);		} else {			frwBannerRot_indice++;			frwBannerRot_x = frwBannerRot_tam_banner;			frwBannerRot_y = frwBannerRot_tam_banner;			if (frwBannerRot_indice == frwBannerRot_imgs.length) frwBannerRot_indice = 0;			window.setTimeout("frwBannerRot_calcula()",frwBannerRot_espera);		}	}		frwBannerRot_cargar();
