var init_onload = new Array();

function start_loader() {
  for (var i=0; i<init_onload.length; i++) {
    eval(init_onload[i]);
  }
}

function setup_ym(y,m) {
  monthes = new Array('','january','february','march','april','may','june','july','august','september','october','november','december');
  var s = '<img src="/images/'+monthes[m]+'.gif" /><img src="/images/'+y+'.gif" />';
  $("#currentDate").html(s);
}
window.onload = start_loader;

