var theImages = new Array()

//Random-loading images
theImages[0] = 'heartFailure-101309.gif' 
theImages[1] = '/statistics/images/chartbook_logo_2008_square.gif' 
theImages[2] = 'AAAIDS.jpg' 

var j = 0
var p = theImages.length;
var preBuffer = new Array()

for (i = 0; i < p; i++){
preBuffer[i] = new Image()
preBuffer[i].src = theImages[i]
}
var whichImage = Math.round(Math.random()*(p-1));

function showImage(){
if(whichImage==0){
document.write('<a href ="http://hearthealthywomen.org/index.php?view=article&amp;id=76"><img src="'+theImages[whichImage]+'" border="1" alt="Heart Failure in Women. Get the Facts."></a>');
}
else if(whichImage==1){
document.write('<a href ="http://www.healthstatus2010.com/owh/chartbook/ChartBookData_search.asp"><img src="'+theImages[whichImage]+'" border="1"  alt="Women\'s Health and Mortality Chartbook"></a>');
}
else if(whichImage==2){
document.write('<a href ="http://www.cdc.gov/nineandahalfminutes/index.html"><img src="'+theImages[whichImage]+'" border="1" width="100" height="114" alt="Every 9 1/2 minutes someone in the US is infected with HIV. Act Against AIDS."></a>');
}
}