function tiQuickSelectors(id)
{
  alert('Hier');
  this.id=id;
  this.dayNames=Array("Montag","Dienstag","Mittwoch","Donnerstag","Freitag","Samstag","Sonntag");
  
  //init to today
  var now=new Date();
  
  //create a referer from the div to the object
  $(id).selectors=this;
  
  function zero(i)
  {
    return i >9 ? i : '0' + i;
  }
}
