var imatges = new Array();
//Amb nomes text
imatges[imatges.length] = {src:"", url:"http://polse.org/search/Job_Vacancies/", descripcio:"Resources to find work around the world", nomestxt:"Job Vacancies"};
imatges[imatges.length] = {src:"", url:"http://www.polseguera.net/arxius/Interna/Books/", descripcio:"Books, magazines, newspapers, dictionaries", nomestxt:"Books and Magazines"};
//Amb imatges
imatges[imatges.length] = {src:"http://www.polse.com/botons/freepostcards.gif", url:"http://www.polse.com/cgi-bin/postcards/virtualcards/index.cgi?lang=english.pm", descripcio:"Virtual Postcards", nomestxt:""};

function alterna_banners() {
var currIndex = Math.floor(Math.random() * (imatges.length));
if (imatges[currIndex].src) {
var output = "<a href='" + imatges[currIndex].url + "' target=_blank class=publicitat>";
output += "<img src='" + imatges[currIndex].src;
output += "' alt='" + imatges[currIndex].descripcio + "' /><br />" + imatges[currIndex].descripcio + "</a>";
} else {
var output = "<a href='" + imatges[currIndex].url + "' target=_blank" + " title='" + imatges[currIndex].descripcio + "' class=publicitat>";
output += imatges[currIndex].nomestxt + "</a>";
}
return output;
}

