function month_of_year() 
{ 
var monthcontent=new Array() 
monthcontent[0]="cal_jan_10.html"; //January content 
monthcontent[1]="cal_feb_10.html"; //February content 
monthcontent[2]="cal_mar_10.html"; //March content 
monthcontent[3]="cal_apr_10.html"; //April content 
monthcontent[4]="cal_may_10.html"; //May content 
monthcontent[5]="cal_jun_10.html"; //June content 
monthcontent[6]="cal_jul_10.html"; //July content 
monthcontent[7]="cal_aug_09.html"; //August content 
monthcontent[8]="cal_sep_09.html"; //September content 
monthcontent[9]="cal_oct_09.html"; //October content 
monthcontent[10]="cal_nov_09.html"; //November content 
monthcontent[11]="cal_dec_09.html"; //December content 
var mydate=new Date(); 
var mymonth=mydate.getMonth(); 
var present=mymonth; 

var iframe=document.getElementById? document.getElementById("month_image") : document.all.month_image; 
iframe.src=monthcontent[present]; 
} 
