<!--
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','/honeymoonimages/destinations_button_on.gif','/honeymoonimages/home_button_on.gif','/honeymoonimages/about_us_button_on.gif','/honeymoonimages/contactus_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="/honeymoonimages/home_button_on.gif"
	}
function NoHomeLightUp()
	{
	document.HomeLight.src="/honeymoonimages/home_button_off.gif"
	}	
function AboutUsLightUp()
	{
	document.AboutUsLight.src="/honeymoonimages/about_us_button_on.gif"
	}
function NoAboutUsLightUp()
	{
	document.AboutUsLight.src="/honeymoonimages/about_us_button_off.gif"
	}
function DestinationsLightUp()
	{
	document.DestinationsLight.src="/honeymoonimages/destinations_button_on.gif"
	}
function NoDestinationsLightUp()
	{
	document.DestinationsLight.src="/honeymoonimages/destinations_button_off.gif"
	}
function ContactUsLightUp()
	{
	document.ContactUsLight.src="/honeymoonimages/contactus_button_on.gif"
	}
function NoContactUsLightUp()
	{
	document.ContactUsLight.src="/honeymoonimages/contactus_button_off.gif"
	}

function changePage(newLoc)
 {
   nextPage = newLoc.options[newLoc.selectedIndex].value

   if (nextPage != "")
   {
      document.location.href = nextPage
   }
 }

-->