var fastimageset = [
"We are but instruments in the hands of God and must never act if we were more. A musician takes a flute, which has nothing in it and of itself, produces no sound. He breathes into it and the sounds which issue he modifies by the keys he touches. This is an imperfect image of the way in which Gods uses us and the inspirations He gives us and the impressions He produces on our senses.<br><small>Julian Tenison Woods  Book of instructions 1870</small>",
"I do not ask for an easier task, since, Lord, it is for you. I only seek courageous hope to renew my vigour.<br><small>Julian Tenison Woods</small>",
"You must cheer up and not let poor human fears and feelings get the better of your confidence in God.<br><small>Julian Tenison Woods</small>",
"Gods will is to be your only guide, your only dependence, your only guide.<br><small>Julian to Mary MacKillop 27.12.1870</small>",
"There is no thought into which God does not enter.<br><small>Julian Tenison Woods 1870</small>",
"I see God in the glorious sunset and sunrise and they only serve to remind me how pale and lonely they are compared to the reality.<br><small>Julian Tenison Woods to Mary MacKillop 1870</small>",
"The spirit of the institute is a spirit of prayer, of poverty, of humility.<br><small>Julian Tenison Woods</small>",
"Nothing makes us feel so charitable towards another as praying for them.<br><small>Julian Tenison Woods to Mary MacKillop 25.5.1863</small>",
"We are to try to make men better by the example of St Joseph.<br><small>Julian T Woods 1887</small>",
"Be kind to all, be gentle to all, be very, very gentle.<br><small>Julian Tenison Woods to the early sisters</small>",
"How tenderly the Lord confides in us.<br><small>Julian Tenison Woods 1870</small>",
"Ask St Joseph to make you humble. He will do wonders for you if only you ask him.<br><small>Julian Tenison Woods to the Sisters Feb 1887</small>",
"Souls truly devoted to St Joseph make great progress in virtue.<br><small>Julian Tenison Woods to the Sisters Feb 1870</small>",
"It is not necessary that we succeed in all we undertake. God is as much glorified by failure if it be His will.<br><small>Julian Tenison Woods  Book of instructions</small>",
"Gods power is manifested when He produces strength from weakness.<br><small>Julian Tenison Woods  Book of instructions</small>",
"The Eucharist is a proof of His words that his delight is to be with the children of men.<br><small>Julian Tenison Woods 1863</small>",
"Let the Sisters remember that the children will be attracted to Jesus by a bright smiling exterior but would be repelled by too much gloom.<br><small>Julian Tenison Woods - Rule 1968</small>",
"Be gentle. If you are not gentle you are not like our Divine Model.<br><small>Julian Tenison Woods  Memoirs</small>",
"God loves to be trusted.<br><small>Julian Tenison Woods 1886</small>",
"I would not give much for piety that was morose or ill-natured.<br><small>Julian Tenison Woods 1870</small>",
"It is no misfortune in this life to be poor.<br><small>Julian Tenison Woods 1872</small>",
"The presence of God does not consist in thinking of Him but in a sense of His presence in every occupation.<br><small>Julian Tenison Woods  Book of instructions 1870</small>",
"You cannot see Our Lord but you can see His children and He leaves you to do for them what He would do in your place.<br></small>Julian Tenison Woods  Memoirs</small>",
"We must desire to do much good and have a great seal for souls. We must never leave a good that we can do untried and never spare ourselves.<br></small>Julian Tenison Woods  Book of instructions 1870</small>",
"The Sisters. shall recognise in the children committed to their charge the person of the infant Jesus and try to discharge the same holy office to them which St Joseph fulfilled towards his sacred charge.<BR><small>Julian Tenison Woods  Rule 1867</small>",
"Our institute should always be distinguished by the humility and poverty of the sisters.<br><small>Julian Tenison Woods  Book of instructions 1870</small>",
"To work for the poor, to be composed of the children of the poor, is to be like the Holy Family. To be much with the rich and powerful is not our vocation though it may be that of others because the rich must be looked after as well as the poor.<br><small>Julian Tenison Woods  Book of instructions 1870</small>",
"God is the sovereign truth who can neither deceive nor be deceived. .If we are ever to arrive at eminent sanctity it will only be by the help of the utmost simplicity.<br><small>Julian Tenison Woods  Book of instruction 1870</small>",
"We must never give way to trouble or anxiety on any account whatever. A disturbed feeling is always an action contrary to the Holy Spirit.<br><small>Julian Tenison Woods  Book of instructions 1870</small>",
"Sisters of St Joseph should have great courage, a courage that rises with difficulties and obstacles instead of being lessened by them.<br><small>Julian Tenison Woods  Book of instruction 1870</small>"
];

// Use cookie to record the last image from the fast set shown.
function setCookie(name,value,expire)
{
	document.cookie = name + "=" + escape(value) +
			((expire == null) ? "" : ("; expires=" + expire.toGMTString() ));
}
function getCookie(Name)
{
	var search = Name + "=";
	if (document.cookie.length > 0)  // if there are any cookies
	{
		offset = document.cookie.indexOf(search);
		if (offset != -1)  // if the cookie exists
		{
			offset += search.length;  // set offset to beginning of value
			end = document.cookie.indexOf(";",offset);  // find end of cookie
			if (end == -1) end = document.cookie.length;
			return unescape(document.cookie.substring(offset,end));
		}
	}
}
function register(number)
{
	var today = new Date();
	var expires = new Date();
	expires.setTime(today.getTime() + 1000*60*60*24*30);
	setCookie("quote_rotate_img",number,expires);
}

var previm = getCookie("quote_rotate_img");
if (previm == null)
{
	register(0);
	previm = 0;
}
else
{
	++previm ;
	previm %= fastimageset.length;
	register(previm);
}

var fastnow = previm;

var today = new Date();
var day = today.getDate();
var dpm = [31,29,31,30,31,30,31,31,30,31,30,31];