<!--

var i	= null;
var n	= null;
var l	= null;

var rs	= function( l ) {
	$.cookie( 'l', l, {} );
};

var rg	= function() {
	return $.cookie( 'l' );
};

$( document ).ready( function() {
	l	= 'first';
	
	setTimeout( function() {
	   $( '#p-first' ).show( 'slide', { direction : 'up' }, 'normal' );
	}, 1000 );
	
	$( '.m-top' ).click( function() {
	} );
	
	$( '.link-menu' ).click( function( e ) {
		i	= $( this ).attr( 'id' );
		n	= i.split( '-' )[1];
		
		if( l ) {
			if( l == n ) {
				$( '#p-' + l ).hide( 'slide', { direction : 'up' }, 'normal', function() {
				    if( l != "first" )
				    {
				        $( '#p-first' ).show( 'slide', { direction : 'up' }, 'normal' );
				    }
				} );
				
				l	= null;
			} else {
				$( '#p-' + l ).hide( 'slide', { direction : 'up' }, 'normal', function() {
					$( '#p-' + n ).show( 'slide', { direction : 'up' }, 'normal' );
				} );
				
				l	= n;
			}
		} else {
            if( l != "first" )
		    {
                $( '#p-first' ).hide( 'slide', { direction : 'up' }, 'normal' );
            }
            
			$( '#p-' + n ).show( 'slide', { direction : 'up' }, 'normal' );
			
			l	= n;
		}
	} );
} );

-->
