	// JavaScript Document									
var how_many_ads = 5;
var now = new Date()
var sec = now.getSeconds()
var ad = sec % how_many_ads;
ad +=1;
if (ad==1) {
url="/advocacy/washhigh/start.htm";
alt="Washington Highlights";
banner="/images/hp/ads/highlights.gif";
width="150";
height="140";
}
if (ad==2) {
url="http://services.aamc.org/30/mededportal/servlet/segment/mededportal/information/";
alt="MedEdPORTAL: Peer-reviewed resources for medical educators";
banner="/images/hp/ads/mededportal.gif";
width="150";
height="140";
}
if (ad==3) {
url="/careerconnect/start.htm";
alt="Career Connect";
banner="/images/hp/ads/careerconnect_feature.gif";
width="150";
height="140";
}
if (ad==4) {
url="/podcasts/start.htm";
alt="AAMC Podcasts";
banner="/images/hp/ads/podcasts.gif";
width="150";
height="140";
}
if (ad==5) {
url="/reform/start.htm";
alt="Health Care Reform";
banner="/images/hp/ads/reform_feature.gif";
width="150";
height="140";
}


document.write('<a href=\"' + url + '\" target=\"_top\">');
document.write('<img src=\"' + banner + '\" width=')
document.write(width + ' height=' + height + ' ');
document.write('alt=\"' + alt + '\" border=0></a>');
