 function newImage() 
    {
        
	MyImages=new Array();
   	
	MyImages[0]='/recursos/random/Twitter.jpg';
	MyImages[1]='/recursos/random/100_pesos.jpg';
	MyImages[2]='/recursos/random/premio_portadaweb.jpg';
	MyImages[3]='/recursos/random/500_pesos.jpg';
	    
    var link= new Array();
		
	link[0]='http://twitter.com/Banxico';
	link[1]='http://www.banxico.org.mx/billetes-y-monedas/informacion-general/billetes-y-monedas-de-fabricacion-actual/billete-de-100-pesos/pagina-billete-100-pesos.html';
	link[2]='http://www.banxico.org.mx/contactobanxico/';
	link[3]='http://www.banxico.org.mx/billetes-y-monedas/informacion-general/billetes-y-monedas-de-fabricacion-actual/billete-de-500-pesos/pagina-billete-500-pesos.html';

    var randomNumber = Math.round(Math.random()*(MyImages.length-1));
	document.getElementById("randomImage").setAttribute("src", MyImages[randomNumber]);
	document.getElementById("randomLink").setAttribute("href", link[randomNumber]);

    }
