<!--

/*
    IMAGE PAIR RANDOMIZER

    By M. R. Eyestone, 2006-09-17
*/

var picsData = new Array();

// left image path/width/height, right image path/width/height
picsData[0] = "320_soldiers3.jpg::Photo by Slagheap::320::320::320_protest4.jpg::Photo at CU Campus Protest::320::320";
picsData[1] = "320_dozer4.jpg::Photo by Tony (t-mix)::320::320::320_mountainlion3.jpg::Photo by Susan Pettitt::320::320";
picsData[2] = "320_cow6.jpg::Photo by Visio::320::320::320_steak2.jpg::Photo by Robert Terrell (ratterell)::320::320";
picsData[3] = "320_snowtrees.jpg::Photo by Jared Benedict::320::320::320_coolingtowers.jpg::Photo by Yewenyi::320::320";
picsData[4] = "320_surveillancecameras.jpg::Photo by Thomas Hawk::320::320::320_fingerprints2.jpg::Photo by Manamanah::320::320";
picsData[5] = "320_notrespass.jpg::Photo by Christine Wainwright (cdw9)::320::320::320_homeless.jpg::Photo by the Goat (goatopolis)::320::320";
picsData[6] = "320_forest2.jpg::Photo by Ken Douglas (Today is a good day)::320::320::320_logs.jpg::Photo by Bastian (.bandit)::320::320";
picsData[7] = "320_pill.jpg::Photo by Don Solo (don solo)::320::320::320_monkey.jpg::Photo by Jeremy Richardson (Mr Jaded)::320::320";
picsData[8] = "320_nyse.jpg::Photo by Mark Visosky (Mister V)::320::320::320_homeless6.jpg::Photo by Jonathan Boeke (boeke)::320::320";
picsData[9] = "320_mansion2.jpg::Photo by Ted Fines (tEdGuY49)::320::320::320_slums.jpg::Photo by Nohanjes (nohan)::320::320";
picsData[10] = "320_neverback.jpg::Photo by Alexandra Lee (alexandralee)::320::320::320_fetus.jpg::Photo by unknown::320::320";
picsData[11] = "320_wheelchair.jpg::Photo by Mr. E. Cypher (Mr. E.)::320::320::320_stemcells2.jpg::Stem Cells::320::320";
picsData[12] = "320_buck.jpg::Photo by Gal m (baboon*)::320::320::320_columbine.jpg::Surveillance camera at Columbine HS::320::320";
picsData[13] = "320_hunger.jpg::Photo by Parc Cruz::320::320::320_fancymeal.jpg::Photo by Luigi Anzivino (ilmungo)::320::320";
picsData[14] = "320_forest3.jpg::Photo by underbunny::320::320::320_industry.jpg::Photo by Dave Bullock (eecue)::320::320";
picsData[15] = "320_march.jpg::Photo by Philgarlic::320::320::320_riotpolice.jpg::Photo by Centrifuga::320::320";
picsData[16] = "320_neardeath.jpg::Photo by Ari (whatnot)::320::320::320_pulledplug.jpg::Photo by Iacopo Sassarini (ISphoto)::320::320";
picsData[17] = "320_shotgun.jpg::Photo by Paddy Patterson (mrpattersonsir)::320::320::320_notrespass2.jpg::Photo by Aaron Jacobs (Aaron Jacobs)::320::320";
picsData[18] = "320_rwanda.jpg::Photo by Cresta King Kutcher (camera_rwanda)::320::320::320_groceries.jpg::Photo by Doug Wilson (iboy daniel)::320::320";
picsData[19] = "320_torture.jpg::Abu Ghraib::320::320::320_airplane.jpg::Photo by Ben McLeod (ben mcleod)::320::320";
picsData[20] = "320_mlk.jpg::Martin Luther King::320::320::320_starsandbars.jpg::Photo by Dana (dana j)::320::320";
picsData[21] = "320_march.jpg::Photo by Philgarlic::320::320::320_riotpolice.jpg::Photo by Centrifuga::320::320";


/*

These are earlier images that we aren't using; and their photographers

Other images and their owners:  
320_bullets3.jpg::Photo by John Hardman (afterdark_)
320_homeless3.jpg::Photo by Berge Gazen (bayat)
320_sick.jpg::Photo by Heather Watts (headur)
320_war2.jpg::Photo by James McCauley (nukeit1)
picsData[15] = "320_heroin2.jpg::Photo by Lenny Montana (lenny montana)::320::320::320_peephole.jpg::Photo by Hobvias Sudoneighm (striatic)::320::320";



picsData[0] = "320_pollution7.jpg::320::320::320_fogtrees.jpg::320::320";
picsData[1] = "320_war.jpg::320::320::320_protest4.jpg::320::320";
picsData[2] = "320_mansion.jpg::320::320::320_slums3.jpg::320::320";
picsData[3] = "320_medical.jpg::320::320::320_embryo.jpg::320::320";
picsData[4] = "320_bullets.jpg::320::320::320_notrespass.jpg::320::320";
picsData[5] = "320_dozer2.jpg::320::320::320_mountainlion2.jpg::320::320";
picsData[6] = "320_cow.jpg::320::320::320_steak.jpg::320::320";
picsData[7] = "320_prison.jpg::320::320::320_fingerprints.jpg::320::320";
picsData[8] = "320_gayhands.jpg::320::320::320_siegheil.jpg::320::320";

*/


var r = Math.round(Math.random() * (picsData.length - 1));

if ((r < 0) || (r > (picsData.length - 1)))
{
    r = 0;
}

var splitData = new Array();
splitData = picsData[r].split("::");
var leftPath = splitData[0];
var leftTITLE = splitData[1];
var leftW = splitData[2];
var leftH = splitData[3];
var rightPath = splitData[4];
var rightTITLE = splitData[5];
var rightW = splitData[6];
var rightH = splitData[7];

var leftImg = '<img src="' + leftPath + '" title="' + leftTITLE + '" width="' + leftW + '" height="' + leftH + '" />';
var rightImg = '<img src="' + rightPath + '" title="' + rightTITLE + '" width="' + rightW + '" height="' + rightH + '" />';

//-->
