jQuery( function(){

    jQuery("#menu-cms").click( function(){ jQuery("#menu-cms-options").show(); } );
	
	jQuery("#menu-cms-options").hover( function(){ jQuery("#menu-cms-options").show(); }
	                                 , function(){ jQuery("#menu-cms-options").hide(); } );

    jQuery("#menu-page").click( function(){ jQuery("#menu-page-options").show(); } );
	
	jQuery("#menu-page-options").hover( function(){ jQuery("#menu-page-options").show(); }
	                                  , function(){ jQuery("#menu-page-options").hide(); } );
	                                     
	                                      
	jQuery("#add-slot").hover( function(){ jQuery("#menu-add-slot-options").show(); }
	                         , function(){ jQuery("#menu-add-slot-options").hide(); } );
	                         
	jQuery("#menu-add-slot-options").hover( function(){ jQuery("#menu-page-options").show(); jQuery("#menu-add-slot-options").show(); }
									      , function(){ jQuery("#menu-page-options").hide(); jQuery("#menu-add-slot-options").hide(); } );
});