// JavaScript Document

var start   = 0; 
var current = start;
var end = 5;
var theImages = new Array() 


theImages[0] = '<a href="http://www.tijuana.gob.mx/dependencias/copladem/index.asp" target="_blank"><img src="../../logosDependencias/copladem.gif" width="180" height="94" border="0" /></a>'
theImages[1] = '<a href="http://transporte.tijuana.gob.mx" target="_blank"><img src="../../logosDependencias/dmt.gif" width="180" height="94" border="0" /></a>'
theImages[2] = '<a href="http://immujer.tijuana.gob.mx" target="_blank"><img src="../../logosDependencias/immujer.gif" width="180" height="94" border="0" /></a>'
theImages[3] = '<a href="http://www.dif.tijuana.gob.mx" target="_blank"><img src="../../logosDependencias/dif.gif" width="180" height="94" border="0" /></a>'
theImages[4] = '<a href="http://www.sedesom.tijuana.gob.mx" target="_blank"><img src="../../logosDependencias/sedesom.gif" width="180" height="94" border="0" /></a>'
theImages[5] = '<a href="http://www.comunidadsegura.tijuana.gob.mx" target="_blank"><img src="../../logosDependencias/089.gif" width="180" height="94" border="0" /></a>'


function randOrd(){
	return (Math.round(Math.random())-0.5);
} 

theImages.sort( randOrd );

function showImage01(){
	document.write(theImages[0]);
}
