var imatges = new Array();
//Amb nomes text
imatges[imatges.length] = {src:"", url:"http://www.polseguera.org/tools_for_language_professionals.php", descripcio:"Translation software, dictionaries...", nomestxt:"Tools for Language Professionals"};
imatges[imatges.length] = {src:"", url:"http://www.polseguera.org/cgi-bin/forum/gforum.cgi?forum=24;idioma=English", descripcio:"Language Forum. You can send jokes.", nomestxt:"Jokes"};
imatges[imatges.length] = {src:"", url:"http://www.polseguera.com/cgi-bin/phrases/angles/phrases.cgi", descripcio:"Sayings, set phrases, popular phrases, idioms, proverbs...", nomestxt:"Sayings and Phrases"};
imatges[imatges.length] = {src:"", url:"http://www.polseguera.com/telephone_cards.php", descripcio:"Call the ones you love o from your company at affordable prices.", nomestxt:"International Telephone Cards"};
//Amb imatges
imatges[imatges.length] = {src:"http://www.polseguera.com/freegrammar/logofrgren.gif", url:"http://www.polseguera.com/freegrammar.htm", descripcio:"English Grammar", 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=xponsor>";
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=xponsor>";
output += imatges[currIndex].nomestxt + "</a>";
}
return output;
}

