// JavaScript Document
var now = new Date();
var today = new Date();
now = new Date (now.getFullYear(),now.getMonth(),now.getDate()+1,0,0,0);
var now_year = now.getFullYear();
var now_month = now.getMonth();
var now_date = now.getDate();
var tommorrow = new Date (now_year,now_month,now_date+1,0,0,0);
var tommorrow_year = tommorrow.getFullYear();
var tommorrow_month = tommorrow.getMonth();
var tommorrow_date = tommorrow.getDate();
tommorrow_month += 1;
now_month +=1;
var next_year=now_year+1;

$(function(){
	SetToday();
});
