function onLoad()
{
	if (document.images)
	{

	/* nav rollovers
	~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
	jan_on = new Image();
        jan_on.src = "images/calendar/jan_on.gif";
	feb_on = new Image();
        feb_on.src = "images/calendar/feb_on.gif";
	mar_on = new Image();
        mar_on.src = "images/calendar/mar_on.gif";
	apr_on = new Image();
        apr_on.src = "images/calendar/apr_on.gif";
	may_on = new Image();
        may_on.src = "images/calendar/may_on.gif";
	jun_on = new Image();
        jun_on.src = "images/calendar/jun_on.gif";
	jul_on = new Image();
        jul_on.src = "images/calendar/jul_on.gif";
	aug_on = new Image();
        aug_on.src = "images/calendar/aug_on.gif";
	sep_on = new Image();
        sep_on.src = "images/calendar/sep_on.gif";
	oct_on = new Image();
        oct_on.src = "images/calendar/oct_on.gif";
	nov_on = new Image();
        nov_on.src = "images/calendar/nov_on.gif";
	dec_on = new Image();
        dec_on.src = "images/calendar/dec_on.gif";


	jan = new Image();
        jan.src = "images/calendar/jan.gif";
	feb = new Image();
        feb.src = "images/calendar/feb.gif";
	mar = new Image();
        mar.src = "images/calendar/mar.gif";
	apr = new Image();
        apr.src = "images/calendar/apr.gif";
	may = new Image();
        may.src = "images/calendar/may.gif";
	jun = new Image();
        jun.src = "images/calendar/jun.gif";
	jul = new Image();
        jul.src = "images/calendar/jul.gif";
	aug = new Image();
        aug.src = "images/calendar/aug.gif";
	sep = new Image();
        sep.src = "images/calendar/sep.gif";
	oct = new Image();
        oct.src = "images/calendar/oct.gif";
	nov = new Image();
        nov.src = "images/calendar/nov.gif";
	dec = new Image();
        dec.src = "images/calendar/dec.gif";


	/* other rollovers
	~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
	read_more_on = new Image();
		read_more_on.src = "images/btns/readMore_on.gif";
	read_more = new Image();
		read_more.src = "images/btns/readMore.gif";


	y2004_on = new Image();
		y2004_on.src = "images/calendar/arc_2004_ON.gif";
	y2004 = new Image();
		y2004.src = "images/calendar/arc_2004.gif";
	y2005_on = new Image();
		y2005_on.src = "images/calendar/arc_2005_ON.gif";
	y2005 = new Image();
		y2005.src = "images/calendar/arc_2005.gif";
	y2006_on = new Image();
		y2006_on.src = "images/calendar/arc_2006_ON.gif";
	y2006 = new Image();
		y2006.src = "images/calendar/arc_2006.gif";
	y2007_on = new Image();
		y2007_on.src = "images/calendar/arc_2007_ON.gif";
	y2007 = new Image();
		y2007.src = "images/calendar/arc_2007.gif";

	y2008_on = new Image();
		y2008_on.src = "images/calendar/arc_2008_ON.gif";
	y2008 = new Image();
		y2008.src = "images/calendar/arc_2008.gif";

	y2009_on = new Image();
		y2009_on.src = "images/calendar/arc_2009_ON.gif";
	y2009 = new Image();
		y2009.src = "images/calendar/arc_2009.gif";

    }
}

onLoad();

function image_over(link) {
    img = link.getElementsByTagName('img');
    if (img) {
        if (img[0]) {
            img[0].src = img[0].src.replace(/.gif/g, '_ON.gif');
        }
    }
    
}
function image_out(link) {
    img = link.getElementsByTagName('img');
    if (img) {
        if (img[0]) {
            img[0].src = img[0].src.replace(/_ON/g, '');
        }
    }
}

function image_swap(imgName)
{
    if (document.images)
    {
        document [imgName].src = eval(imgName + "_on.src");
    }
    else
    {
        return;
    }
}

function image_restore(imgName)
{
    if (document.images)
    {
        document [imgName].src = eval(imgName + ".src");
    }
    else
    {
        return;
    }
}
