
Date.prototype.getDOY = function() {
var onejan = new Date(this.getFullYear(),0,1);
return Math.ceil((this - onejan) / 86400000);
} 
function barnLocation()
{
var today = new Date();
var barnnum = today.getDOY(); 
if (barnnum >= 243 && barnnum <= 283) {
	window.location = "http://www.horsesinthewoods.com/barn/boo.htm";
	}
else {
	window.location = "http://www.horsesinthewoods.com/barn/barn.htm";
	}
}
function saleLocation()
{
var today = new Date();
var salenum = today.getDOY(); 
if (salenum >= 100 && salenum <= 140) {
	window.location = "http://www.horsesinthewoods.com/greenhouse/sale.htm";
	}
else {
	window.location = "http://www.horsesinthewoods.com/greenhouse/greenhouse.htm";
	}
}

