<!-- HIDE
var section = 0;
var mouse_in = 0;
var mouse_on = 0;
flag = 1;
rolloutTimer = setTimeout ("window.status = ''", 10);

//*
//* this section replace by image according by AVAILABLE functionality
//*
// <BEGIN>
if (document.images)
{
	//* Section Zero - BLANK SCREEN
	img0 = new Image();   img0.src =  "images/trans.gif";
	mid = new Image();   mid.src =  "images/collage3.jpg";

	//* Weddings
	img1 = new Image();   img1.src = "images/camera1b.jpg";
	mid1 = new Image();   mid1.src = "images/wed4.jpg";
        
	//* Family Portrait
	img2 = new Image();   img2.src = "images/camera2b.jpg";
	mid2 = new Image();   mid2.src = "images/fam3.jpg"; 
		
	//* Graduation
	img3 = new Image();   img3.src = "images/camera3b.jpg";
	mid3 = new Image();   mid3.src = "images/grad3.jpg";  
		
	//* Other Occasion
	img4 = new Image();   img4.src = "images/camera4b.jpg";
	mid4 = new Image();   mid4.src = "images/oth3.jpg";   

	//* <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");
		document["mid"].src = eval("mid" + num + ".src");
	}
}

//hardcode
function Stay()
{
	mouse_on = 0;
    mouse_in = 0;
}

function completeLeave()
{
 	mouse_in = 1;
    flag = 0;       
    rolloutTimer = setTimeout ("Leave()", 1);
}

function Leave()
{
 	if (mouse_in == 1 && flag == 0)
	{
		if (document.images)
		{
	    	document["img1"].src =  "images/camera1.jpg";
			document["img2"].src =  "images/camera2.jpg";
			document["img3"].src =  "images/camera3.jpg";
			document["img4"].src =  "images/camera4.jpg";
	    	document["mid"].src =  "images/collage3.jpg"; 
 		}
       	section = 0;
	}
}
                       
function completeswapoff()
{
	mouse_on = 1;
    flag =0;
    rolloutTimer = setTimeout ("swapoff()", 1);
}

//hardcode
function swapoff()
{
	if (mouse_on == 1 && flag == 0)
	{
		if (document.images)
		{
        	document["img1"].src =  "images/camera1.jpg"; 
			document["img2"].src =  "images/camera2.jpg";
			document["img3"].src =  "images/camera3.jpg";
			document["img4"].src =  "images/camera4.jpg";
	    	document["mid"].src =  "images/collage3.jpg"; 
		}
        section = 0;
    }
}                       

// UNHIDE -->
