//
// k i l a k  (c) 2006
// http://www.kilak.com/
//


//*---------------------------------------------
//* Rutinas para el manejo de imágenes dinámicas
//*---------------------------------------------
Qs = new Array();
var iQCount = 0;

//*
//* Lista de Qs
//*
//* Funcion:
//* AddQ( URL, Alternative_text );
//*
AddQ( "pic_q1.gif", "Quattro Stelle" );
AddQ( "pic_q2.gif", "Quattro Stelle" );
AddQ( "pic_q3.gif", "Quattro Stelle" );
AddQ( "pic_q4.gif", "Quattro Stelle" );
//AddQ( "pic_q5.gif", "Quattro Stelle" );
AddQ( "pic_q6.gif", "Quattro Stelle" );
AddQ( "pic_q7.gif", "Quattro Stelle" );
AddQ( "pic_q8.gif", "Quattro Stelle" );
//AddQ( "pic_q9.gif", "Quattro Stelle" );
//AddQ( "pic_q10.gif", "Quattro Stelle" );

//*
//* Rutinas de proceso
//*
var sum_of_all_chances = 0;
for (i = 0; i < Qs.length; i++) {
	sum_of_all_chances += Qs[i].chance;
}

function AddQ( imgSource, alt ) {
	Qs[iQCount++] = new Q( imgSource, alt, 10 )
}

function Q( imgSource, alt, chance ) {
	this.imgSource = imgSource;
	this.alt = alt;
	this.chance = chance;
}

function randomQ() {
	var chance_limit = 0;
	var randomly_selected_chance = 0;
	
	randomly_selected_chance = Math.round((sum_of_all_chances - 1) * Math.random()) + 1;
	
	for (i = 0; i < Qs.length; i++) {
		chance_limit += Qs[i].chance;
		if (randomly_selected_chance <= chance_limit) {
			document.write("<img src='/images/home/" + Qs[i].imgSource + "' width=237 height=264 border=0 alt='" + Qs[i].alt + "'>");
			//return Qs[i];
			break;
      }
   }
}
// END ->


<!--
        if (document.images) {            // Active Images
// ENCENDIDO
// HOME
            img31on = new Image();
            img31on.src = "/images/home/pic_01-on.jpg";
            img32on = new Image(); 
            img32on.src = "/images/home/pic_02-on.jpg";  
            img33on = new Image();
            img33on.src = "/images/home/pic_03-on.jpg";
            img34on = new Image();
            img34on.src = "/images/home/pic_04-on.jpg";
            img35on = new Image();
            img35on.src = "/images/home/pic_05-on.jpg";
            img36on = new Image();
            img36on.src = "/images/home/pic_06-on.jpg";


// APAGADO
// HOME
            img31off = new Image();
            img31off.src = "/images/home/pic_01-off.jpg";
            img32off = new Image(); 
            img32off.src = "/images/home/pic_02-off.jpg";  
            img33off = new Image();
            img33off.src = "/images/home/pic_03-off.jpg";
            img34off = new Image();
            img34off.src = "/images/home/pic_04-off.jpg";
            img35off = new Image();
            img35off.src = "/images/home/pic_05-off.jpg";
            img36off = new Image();
            img36off.src = "/images/home/pic_06-off.jpg";
        }

// Function to 'activate' images.
function imgOn(imgName) {
        if (document.images) {
            document[imgName].src = eval(imgName + "on.src");

        }
}
// Function to 'deactivate' images.
function imgOff(imgName) {
        if (document.images) {
            document[imgName].src = eval(imgName + "off.src");
        }
}

// -->

<!--
// Ventana Nueva
	function Prods(desktopURL)
      { 
	  var desktop = window.open( desktopURL, "_blank", "width=500,height=300,scrollbars=no,resizable=no");
      }
// -->