// JavaScript Document
var IMAGEN, IMAGEN_TITLE, URL, URL_TEXTO;
var caso  = new Array();
var x;

function get_random()
{
    var ranNum= Math.floor(Math.random()*caso.length);
    return ranNum;
}


caso[0] = [ "img/casos/pok.jpg","Pok","casos/pok.html","Learn more about the mobile solutions we offered Poks Media (Spain)"];
caso[1] = [ "img/casos/simpson.jpg", "Ancel / FOX", "casos/simpsons.html","Learn more about the mobile solutions we offered ANCEL"];
caso[2] = [ "img/casos/radiofutura.jpg","Radio Futura","casos/radio_futura.html","Learn more about the mobile solutions we offered Radio Futura"];
caso[3] = [ "img/casos/comercial.jpg","Banco Comercial","casos/banco_comercial.html","Learn more about the mobile solutions we offered Banco Comercial"	];


x = get_random();

IMAGEN 		 = caso[x][0];
IMAGEN_TITLE = caso[x][1];
URL 		 = caso[x][2];
URL_TEXTO 	 = caso[x][3];