<!-- HIDE
var section = 0;
var mouse_in = 0;
var mouse_on = 0;
flag = 1;
rolloutTimer = setTimeout ("window.status = ''", 1);

//*
//* this section replace by image according by AVAILABLE functionality
//*
// <BEGIN>
if (document.images)
{

	//* WeddingGallery
	img1 = new Image();   img1.src = "images/wedgal_butlt.gif";
        
	//* Irish Gallery
	img2 = new Image();   img2.src = "images/irish_butlt.gif";
	
	//* Olympia Gallery
	img3 = new Image();   img3.src = "images/grad_butlt.gif";
	 

	//* <END>
}
                        
//  hardcode
function swap(num)
{
    section = num;
    mouse_in = 1;
    mouse_on = 1;
    flag = 1;
    if (document.images)
	{
		document["img"+num].src = eval("img" + num + ".src");
	}
}

//hardcode
function Stay()
{
	mouse_on = 0;
    mouse_in = 0;
}

function completeLeave()
{
 	mouse_in = 1;
    flag = 0;       
    rolloutTimer = setTimeout ("Leave()", 0);
}

function Leave()
{
 	if (mouse_in == 1 && flag == 0)
	{
		if (document.images)
		{
	    	document["img1"].src =  "images/wedgal_but.gif";
			document["img2"].src =  "images/irish_but.gif";
			document["img3"].src =  "images/grad_but.gif";
		}
       	section = 0;
	}
}
                       
function completeswapoff()
{
	mouse_on = 1;
    flag =0;
    rolloutTimer = setTimeout ("swapoff()", 0);
}

//hardcode
function swapoff()
{
	if (mouse_on == 1 && flag == 0)
	{
		if (document.images)
		{
        	document["img1"].src =  "images/wedgal_but.gif";
			document["img2"].src =  "images/irish_but.gif";
			document["img3"].src =  "images/grad_but.gif";
		}
        section = 0;
    }
}                       

// UNHIDE -->
