function get_random()
{
    var ranNum= Math.floor(Math.random()*2);
    return ranNum;
}

function getJpgId_A()
{
    var whichQuote=get_random();
    var quote=new Array(2)
    
    //quote[0]="3265";//Vanessa Hot Kiss
    quote[0]="2862";//Totally Spice Girls
    quote[1]="3154";//Pizza Match
    //quote[2]="3153";//Hire a Private Eye
          
    return quote[whichQuote];
}

function getJpgId_B()
{
    var whichQuote=get_random();
    var quote=new Array(3)
    
    //quote[0]="3155";//Kissing Championship
    quote[0]="3087";//Run Jerry Run
    quote[1]="3371";//Babysitter Kissing
	//quote[1]="3157";//Funny Elevator    
      
    return quote[whichQuote];
}

function showbanner(gameid)
{
  document.write("<a href='http://www.evoarcade.com/out.php?game="+gameid+"' target='_blank'>");
  document.write("<img width='300' height='250' border='0' src='http://www.evoarcade.com/mx/300250/"+gameid+".jpg'></a>");
}

