/*  FUNCIONALIDADES ROTADO DE BANNER
 *--------------------------------------------------------------------------*/
//Función de rotado de imagenes
// Efecto de la imagen.
var banners_url = "config/skin/wolters_kluwer_common/images/banner_home.jpg;config/skin/wolters_kluwer_common/images/banner_home2.jpg;config/skin/wolters_kluwer_common/images/banner_home3.jpg";
var slideCache = new Array();
function RunSlideShow(pictureName,imageFiles,displaySecs)
{
	var imageSeparator = imageFiles.indexOf(";");
	var nextImage = imageFiles.substring(0,imageSeparator);
	if (document.all)
	{
		document.getElementById(pictureName).style.filter="blendTrans(duration=2)";
		document.getElementById(pictureName).filters.blendTrans.Apply();
	}
	document.getElementById(pictureName).src = nextImage;
	if (document.all)
	{
		document.getElementById(pictureName).filters.blendTrans.Play();
	}
	
	document.getElementById("hid_name_img").value = nextImage;
	
	var futureImages= imageFiles.substring(imageSeparator+1,imageFiles.length)+ ';' + nextImage;
	setTimeout("RunSlideShow('"+pictureName+"','"+futureImages+"',"+displaySecs+")",displaySecs*1000);
	// cambio de imagen.
	imageSeparator = futureImages.indexOf(";");
	nextImage = futureImages.substring(0,imageSeparator);
	if (slideCache[nextImage] == null) {
		slideCache[nextImage] = new Image;
		slideCache[nextImage].src = nextImage;
	}
}


function link_banner_home_wk_click() {
	//alert("llamada a funcion con "+document.getElementById("hid_name_img").value);
	switch (document.getElementById("hid_name_img").value) {
		case "config/skin/wolters_kluwer_common/images/banner_home2.jpg":
			//alert("switch por home2");
			//document.location.href = 'resultado_busqueda.html?wk_simple_search=1&wk_simple_value=El%20Cierre%20Fiscal%20y%20Contable.%20Ejercicio%202009'; 
			document.location.href = 'resultado_busqueda.html?wk_simple_search=1&wk_simple_value=GU%C3%8DA%20PRACTICA%20DE%20LA%20CONTRATACI%C3%93N%20DEL%20SECTOR%20P%C3%9ABLICO';
			break;
		case "config/skin/wolters_kluwer_common/images/banner_home.jpg":
		default: 
			//alert("switch por home");
			//document.location.href = 'resultado_busqueda.html?wk_simple_search=1&wk_simple_value=%20Enciclopedia+Jur%EDdica+de+Administraci%F3n+Local+%28Tres+Vol%FAmenes%29';
			document.location.href = 'resultado_busqueda.html?wk_simple_search=1&wk_simple_value=Todo%20declaraciones%20fiscales';
 			break;
		case "config/skin/wolters_kluwer_common/images/banner_home3.jpg":
			//alert("switch por home3");
			//document.location.href = 'resultado_busqueda.html?wk_simple_search=1&wk_simple_value=Esquemas%20Procesales%20Civiles%2C%20Penales%20y%20Concursales'; 
			document.location.href = 'resultado_busqueda.html?wk_simple_search=1&wk_simple_value=ENCICLOPEDIA%20FORMULARIOS'; 
			break;
	}	
	//link_banner_home_wk;
}
