function toCelcuis(){return Math.round( (5/9)*(this.t-32) );}
function toFahrenheit(){return Math.round( this.t )};
function Temp(x){this.t = x;this.toCelcuis = toCelcuis;this.toFahrenheit = toFahrenheit;}

function weather()
{
this.Average_High_for_this_date = 27;
this.Average_Low_for_this_date = 9;
this.Barometric_Pressure = 1007;
this.Current_Heat_Index = 28;
this.Current_Wind_Chill = 18;
this.Date = "02/03/06";
this.Dew_Point = 23;
this.High_Since_Midnight = 42;
this.High_Time = "03:24 am";
this.Maximum_Heat_Index = 42;
this.Maximum_Heat_Index_Time = "03:26 am";
this.Minimum_Wind_Chill = -2;
this.Minimum_Windchill_Time = "02:37 pm";
this.Moon_Distance = 231781;
this.Moonrise = "10:00 am";
this.Moonset = "11:57 pm";
this.Peak_Wind_Gust = 25;
this.Peak_Wind_Gust_Time = "11:41 am";
this.Rainfall_Rate = 0.00;
this.Rainfall_Since_Midnight = 0.01;
this.Rainfall_to_date = 0.07;
this.Record_High = 47;
this.Record_High_Year = 1991;
this.Record_Low = -32;
this.Record_Low_Year = 1996;
this.Record_Rainfall = 0.22;
this.Record_Rainfall_Year = 1954;
this.Record_Snowfall = 2.50;
this.Record_Snowfall_Year = 1959;
this.Relative_Humidity = 80;
this.Sunrise = "07:12 am";
this.Sunset = "05:23 pm";
this.Temperature = new Temp( 28 );
this.This_Months_Rain = 0.01;
this.Time = "04:45 pm";
this.Todays_Low = 27;
this.Todays_Low_Time = "03:13 pm";
this.Wind_Direction = "WSW";
this.Wind_Speed = 8;
this.Sky_Conditions = "";
this.Sky_Icon = "cloudy";
this.Warnings = "";
}

function moon(phase){var moon=new Array("Jan 29","Feb 5","Feb 12","Feb 21");document.write(moon[phase]);}