How can i make it nicer?
var month = new Array();
month['01']='Jan';
month['02']='Feb';
month['03']='Mar';
etc. Itd be nice to do it like:
var months = new Array(['01','Jan'],['02','Feb'],['03','Mar']);
For example. anyway like that to simplify it?