
	function changeopacity( imageobject, opacity ) {	
	    
		var object = imageobject.style;
	    object.opacity = ( opacity / 100 );
	    object.MozOpacity = ( opacity / 100 );
	    object.KhtmlOpacity = ( opacity / 100 );
	    object.filter = "alpha(opacity=" + opacity + ")";
	
	}
	
	function expandallwines() {
	
		champagnevar.slidedown();
		whitevar.slidedown();
		redvar.slidedown();
		rosevar.slidedown();
		portvar.slidedown();
		dessertvar.slidedown();
		document.getElementById( 'champagnespan' ).innerHTML = '';
		document.getElementById( 'whitespan' ).innerHTML = '';
		document.getElementById( 'redspan' ).innerHTML = '';
		document.getElementById( 'rosespan' ).innerHTML = '';
		document.getElementById( 'portspan' ).innerHTML = '';
		document.getElementById( 'dessertspan' ).innerHTML = '';
	
	}
	
	function expandallmenus( section ) {
	
		var menus = [];
	
		if( section == 'restaurant' ) {
		
			menus[ 0 ] = 'tasting';
			menus[ 1 ] = 'lunch';
			menus[ 2 ] = 'alacarte';
		
		}
		else if( section == 'flannels' ) {
		
			menus[ 0 ] = 'brunch';
			menus[ 1 ] = 'lunch';
			menus[ 2 ] = 'afternoontea';
			menus[ 3 ] = 'allday';
		
		}
		else if( section == 'patisserie' ) {
		
			menus[ 0 ] = 'morning';
			menus[ 1 ] = 'luncheon';
			menus[ 2 ] = 'afternoontea';
			menus[ 3 ] = 'patisserie';
		
		}
		else if( section == 'piazza' ) {
		
			menus[ 0 ] = 'brunch';
			menus[ 1 ] = 'afternoontea';
			menus[ 2 ] = 'allday';
			menus[ 3 ] = 'dessert';
		
		}
		
		for( var counter = 0; counter < menus.length; counter ++ ) {
		
			eval( menus[ counter ] + 'var.slidedown();' );
			document.getElementById( menus[ counter ] + 'span' ).innerHTML = '';
		
		}
		
	}
	
	function contactwindow( person ) {
	
		window.open( '/contact.php?person=' + person, 'Contact', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=300,height=490,left = 740,top = 325');
	
	}