function daysTill() {
  //----------  EDIT THE VARIABLES BELOW  ------------------
  // EDIT THE VARIABLES BELOW
  var day=	25 // Day
  var month=	9 // Month
  var year=	2011 //Year
  var event=	"our next show"
var daydate=	"Sunday 09.25.11"
var location=	"Open Eye Cafe during the Carrboro Music Festival in Carrboro, NC!"
  var end = 	"days until"
var details=	"Details here!"
  //----------  END OF EDIT  -------------------------------

  var daystocount=new Date(year, month -1, day)
  today=new Date()
  if (today.getMonth()==month && today.getDate()>day)
  daystocount.setFullYear(daystocount.getFullYear())
  var oneday=1000*60*60*24
  var write = (Math.ceil((daystocount.getTime()-today.getTime())/(oneday)))
  document.write('<strong>'+write +'</strong> '+end+' '+event+' on '+daydate+' at '+location+' <strong><a href=/shows.php> '+details+ '</a></strong>')
}
