function doExpand( menuClass ) {
	
	if ( $( '#' + menuClass ).is( ':hidden' ) ) {
		
		$( '#' + menuClass ).slideDown( 'slow' );
		$( '#top_' + menuClass ).attr( 'style', 'background: url( \'images/h2-right-arrowdown.gif\' );' );
		
	} else {
		
		$( '#' + menuClass ).slideUp( 'slow' );
		$( '#top_' + menuClass ).attr( 'style', 'background: url( \'images/h2-right-arrowup.gif\' ); height: 22px; margin-bottom: 4px;' );
		
	}
	
}

$( document ).ready( function( ) {
	
	$( '.slider' ).easySlider( {
		
		auto: true,
		continuous: true
		
	} );
	
} );
