
//these two change functions are for the rollovers on the left hand navigation

function changeArrowGreen(imgName) 
{
	document.images[imgName].src = 'images/arrowUpGreen.gif';
}

function changeArrowBlue(imgName) 
{
	document.images[imgName].src = 'images/arrowUpBlue.gif';
}


//these two change functions are for the home rollovers on the left hand navigation only

function changeLeftArrowGreen(imgName) 
{
	document.images[imgName].src = 'images/arrowLeftGreen.gif';
}

function changeLeftArrowBlue(imgName) 
{
	document.images[imgName].src = 'images/arrowLeftBlue.gif';
}


//these two change functions are for the dots in the sub-menu sections

function changeDotGreen(imgName) 
{
	document.images[imgName].src = 'images/greendot.gif';
}

function changeDotBlue(imgName) 
{
	document.images[imgName].src = 'images/bluedot.gif';
}

//functions for the image rollover on the home page

function golfBallOn(imgName) 
{
	document.images[imgName].src = 'images/onthelinks_on.gif';
}

function golfBallOff(imgName) 
{
	document.images[imgName].src = 'images/onthelinks.gif';
}



function showObject(object) 
{
	object.visibility = 'visible';
}

function hideObject(object) 
{
	object.visibility = 'hidden';
}



