<!--
function TodaysDate() {
	RightNow = new Date();
	var theMonth = RightNow.getMonth() + 1;
	var theDay = RightNow.getDate();
	var theYear = RightNow.getFullYear();
	var aMonth
	var theDate
	if (theMonth=="1"){aMonth="January"}
	if (theMonth==2){aMonth="February"}	
	if (theMonth=="3"){aMonth="March"}
	if (theMonth=="4"){aMonth="April"}
	if (theMonth=="5"){aMonth="May"}
	if (theMonth=="6"){aMonth="June"}
	if (theMonth=="7"){aMonth="July"}
	if (theMonth=="8"){aMonth="August"}
	if (theMonth=="9"){aMonth="September"}
	if (theMonth=="10"){aMonth="October"}
	if (theMonth=="11"){aMonth="November"}
	if (theMonth=="12"){aMonth="December"}
		
	var theDate = "" + aMonth + " " + theDay + ", " + theYear;
	document.write(theDate);
	}

function doPreload()
{
if (document.images)
   {
	var the_images = new Array('favicon.ico','/rjimages/home_button_on.gif','/rjimages/aboutus_button_on.gif','/rjimages/gallery_button_on.gif','/rjimages/contact_us_button_on.gif');
	preloadImages(the_images);
	}
}

function preloadImages(the_images_array)
 {
	for(loop = 0; loop < the_images_array.length; loop++)
	{
   		var an_image = new Image();
		an_image.src = the_images_array[loop];
	}
}
function HomeLightUp()
	{
	document.HomeLight.src="/rjimages/home_button_on.gif"
	}
function NoHomeLightUp()
	{
	document.HomeLight.src="/rjimages/home_button_off.gif"
	}	
function AboutUsLightUp()
	{
	document.AboutUsLight.src="/rjimages/aboutus_button_on.gif"
	}
function NoAboutUsLightUp()
	{
	document.AboutUsLight.src="/rjimages/aboutus_button_off.gif"
	}
function GalleryLightUp()
	{
	document.GalleryLight.src="/rjimages/gallery_button_on.gif"
	}
function NoGalleryLightUp()
	{
	document.GalleryLight.src="/rjimages/gallery_button_off.gif"
	}
function ContactUsLightUp()
	{
	document.ContactUsLight.src="/rjimages/contactus_button_on.gif"
	}
function NoContactUsLightUp()
	{
	document.ContactUsLight.src="/rjimages/contactus_button_off.gif"
	}

function breakout_of_frame()
{
  if (top.location != location) {
    top.location.href = document.location.href ;
  }
}
-->