function changeOpacity( id, opacity )
{
	var object = document.getElementById(id).style;
	object.visibility="visible";
	object.opacity = ( opacity / 100 );
	object.MozOpacity = ( opacity / 100 );
	object.KhtmlOpacity = ( opacity / 100 );
	object.filter = "alpha(opacity=" + opacity + ")";
}

function fade(id,inout)
{
	if (inout=="in")
	{
		opacity_in=0;
		changeOpacity(id,opacity_in);
		a=setInterval('if (opacity_in<100) changeOpacity("'+id+'",opacity_in+=5); else clearInterval(a)',1)
	}
	if (inout=="out")
	{
		opacity_out=100;
		changeOpacity(id,opacity_out);
		b=setInterval('if (opacity_out>0) changeOpacity("'+id+'",opacity_out-=5); else clearInterval(b)',1)
	}
}

 var newwin;
 function launchwin(winurl,winname,winfeatures)
 {
	 newwin = window.open(winurl,winname,winfeatures);
	 if(javascript_version> 1.0) setTimeout('newwin.focus();',250);
 }

img00 = new Image();  img00.src="gfx/splasn02.jpg"; 

img01 = new Image();  img01.src="gfx/menub12.png"; 
img02 = new Image();  img02.src="gfx/menub22.png"; 
img03 = new Image();  img03.src="gfx/menub32.png"; 
img04 = new Image();  img04.src="gfx/menub42.png"; 
img05 = new Image();  img05.src="gfx/menub52.png"; 
img06 = new Image();  img06.src="gfx/menub62.png"; 
img07 = new Image();  img07.src="gfx/menub72.png"; 


function menu()
{
	document.write('<table cellpadding=0 cellspacing=0 align=center>');
	document.write('	<tr>');
	document.write('		<td><img src="gfx/menub11.png" onmouseover=\'this.style.cursor="pointer";this.src="gfx/menub12.png"\' onmouseout=\'this.src="gfx/menub11.png"\' onclick=\'location.href="about.php"\'></td>');
	document.write('		<td><img src="gfx/menub21.png" onmouseover=\'this.style.cursor="pointer";this.src="gfx/menub22.png"\' onmouseout=\'this.src="gfx/menub21.png"\' onclick=\'location.href="thelatest.php"\'></td>');
	document.write('		<td><img src="gfx/menub31.png" onmouseover=\'this.style.cursor="pointer";this.src="gfx/menub32.png"\' onmouseout=\'this.src="gfx/menub31.png"\' onclick=\'location.href="weddings.php"\'></td>');
	document.write('		<td><img src="gfx/menub41.png" onmouseover=\'this.style.cursor="pointer";this.src="gfx/menub42.png"\' onmouseout=\'this.src="gfx/menub41.png"\' onclick=\'location.href="bouquets.php"\'></td>');
	document.write('		<td><img src="gfx/menub51.png" onmouseover=\'this.style.cursor="pointer";this.src="gfx/menub52.png"\' onmouseout=\'this.src="gfx/menub51.png"\' onclick=\'location.href="photos.php"\'></td>');
	document.write('		<td><img src="gfx/menub61.png" onmouseover=\'this.style.cursor="pointer";this.src="gfx/menub62.png"\' onmouseout=\'this.src="gfx/menub61.png"\' onclick=\'location.href="press.php"\'></td>');
	document.write('		<td><img src="gfx/menub71.png" onmouseover=\'this.style.cursor="pointer";this.src="gfx/menub72.png"\' onmouseout=\'this.src="gfx/menub71.png"\' onclick=\'location.href="contact.php"\'></td>');
	document.write('	</tr>');
	document.write('</table>');
}
