function baby(a){
   
var a;


today = new Date(); 

months=today.getMonth()+a; 
if(months>12){months=months-12};


//month info 
if(months==12){ months="January "; } 
else if(months==1){ months="February "; } 
else if(months==2){ months="March "; } 
else if(months==3){ months="April "; } 
else if(months==4){ months="May "; } 
else if(months==5){ months="June "; } 
else if(months==6){ months="July "; } 
else if(months==7){ months="August "; } 
else if(months==8){ months="September "; } 
else if(months==9){ months="October "; } 
else if(months==10){ months="November "; } 
else if(months==11){ months="December "; } 

document.write(''+months+'')
}
