// JavaScript Document

var monthImage=new Array(12);
monthImage[0]="jan_special.gif";
monthImage[1]="feb_special.gif";
monthImage[2]="mar_special.gif";
monthImage[3]="apr_special.gif";
monthImage[4]="may_special.gif";
monthImage[5]="june_special.gif";
monthImage[6]="july_spl.gif";
monthImage[7]="august_spl.gif";
monthImage[8]="sep_special.gif";
monthImage[9]="oct_special.gif";
monthImage[10]="nov_special.gif";
monthImage[11]="dec_apecial.gif";
var d=new Date();
//document.write(d.getMonth());
var imgHeader='<img src="images/'+monthImage[d.getMonth()]+'" alt="" style="margin-top:30px;" />';


