(function($) { 

	$( document ).ready ( function () {
	
		if ( $( "body" ).hasClass ( "cms-home" ) ) {
			
			$( "div#tray h2.closed a" ).click ( function ( e ) { 
				e.preventDefault (); 
				goto_open_state ();
			} );
			
		}
		
	} );
	
	function goto_closed_state ( e ) {
		
	}
	
	function goto_open_state () {

		$( "div#tray" ).animate ( { width: "825px" }, "slow", "easeOutExpo", function () {
			$( "div#tray h2.closed" ).fadeOut ( 'fast', function () {
				$( "div#tray h2.open, div#tray dl" ).fadeIn ();
			} );			
		} );
		
		/*
		$( "div#tray h2.closed" ).fadeOut ( 'slow', function () {
			$( "div#tray h2.open, div#tray dl" ).fadeIn ( 'slow' );
		} );
		*/
		
	}

})(jQuery);
