<!-- //

	var home = 0;
	var slide_step = 20;
	var timer_step = 20;

	var buttons = new Array();

	buttons[1] = new Array( 0, 0 );
	buttons[2] = new Array( 0, 0 );
	buttons[3] = new Array( 0, 0 );
	buttons[4] = new Array( 0, 0 );

	function button_slideout( id )
	{
		for ( i=1; i <= 4; i++ )
		{
			if ( buttons[i][0] == 0 && i != id )
			{
				button_slidein( i );
			}
		}

		document.images['im'+id].src = '/images/b_'+id+'_o.gif';
		c = document.getElementById('Container'+id);

		pos_c = parseInt( c.style['left'].substring( 0, c.style['left'].length-2 ) );
		width_c = parseInt( c.style['width'].substring( 0, c.style['width'].length-2 ) );

		if ( pos_c > ( 365 + slide_step ) )
		{
			c.style.left = (pos_c - slide_step) + 'px';
			c.style.width = (width_c + slide_step) + 'px';
			buttons[id][1] = setTimeout( 'button_slideout('+id+')', timer_step );

		}
		else
		{
			c.style.left = '365px';
			c.style.width = '135px';
			clearTimeout( buttons[id][1] );
		}
	}

	function button_slidein( id )
	{
		clearTimeout( buttons[id][1] );

		if ( buttons[id][0] == 0 )
		{
			document.images['im'+id].src = '/images/b_'+id+'.gif';
			c = document.getElementById('Container'+id);

			pos_c = parseInt( c.style['left'].substring( 0, c.style['left'].length-2 ) );
			width_c = parseInt( c.style['width'].substring( 0, c.style['width'].length-2 ) );

			if ( pos_c < ( 479 - slide_step ) )
			{

				c.style.left = (pos_c + slide_step) + 'px';
				c.style.width = (width_c - slide_step) + 'px';
				buttons[id][1] = setTimeout( 'button_slidein('+id+')', timer_step );
			}
			else
			{
				c.style.left = '479px';
				c.style.width = '21px';
				clearTimeout( buttons[id][1] );
			}
		}
		else
		{
			clearTimeout( buttons[id][1] );
		}
	}

	function loadbuttons( button )
	{
		if ( button == 0 )
		{
			for ( i=1; i <= 4; i++ )
			{
				document.images['im'+i].src = '/images/b_'+i+'_o.gif';
				c = document.getElementById('Container'+i);
				c.style.left = '365px';
				c.style.width = '135px';
				buttons[i][1] = setTimeout( 'button_slidein('+i+')', 2500 + ( i * 200 ) );
			}
			home = 1;
		}
		else
		{
			buttons[button][0] = 1;
			document.images['im'+button].src = '/images/b_'+button+'_o.gif';
			c = document.getElementById('Container'+button);
			c.style.left = '365px';
			c.style.width = '135px';
		}
	}

	function resize()
	{
		window.location.reload()
	}

	window.onresize=resize;

	// -->