


/*
	var $j = jQuery.noConflict()
	var $jcurrentMenuContainer = $j('#someFictionalElement');
	var $jpreviousMenuContainer = null; 
	$j(document).ready(function( {
			if( jQuery.support.opacity == true ) {
				$j(".menuContainer a").hover(	
		         	function(){$j(this).animate ({ opacity: 0.7 }, 200 );},
		         	function(){$j(this).animate ({ opacity: 1 }, 600 );}
		    );}
				else {					
					$j('.menuContainer a').hover( 
						function(){$j(this).css('color', '#999');},
					   	function(){$j(this).css('color', '#000');}
					);}			
	// Iterate through each .menu element, setting the full width of each menu to a 'custom'
	//        attribute called 'fullWidth'. Since the full width should never change, this
	//        makes it easy to recall it quickly. You could use global variables instead.
	// After setting 'fullWidth', it then collapses each menu and title.
	$j(".menu").each(function() {
	    var $jtheMenu = $j(this);
	    var $jtheMenuContainer = $jtheMenu.parent();
	    $jtheMenu.attr({fullWidth: ($jtheMenu.width())});   // Add a few pixels for firefox
	    var menuContainerWidth = $jtheMenuContainer.width() - $jtheMenu.attr('fullWidth') ;  // Add DOUBLE the pixels here
	    $jtheMenu.css({width:0});
	    $jtheMenuContainer.css({width: menuContainerWidth});
	}); 
	$j(".menuContainer a").click(
	function() {
	// Set the current and previous elements properly
	            $jpreviousMenuContainer = $jcurrentMenuContainer;
	            $jcurrentMenuContainer = $j(this).parent();
	            var $jpreviousMenu = $jpreviousMenuContainer.find('.menu');
	            var $jcurrentMenu = $jcurrentMenuContainer.find('.menu');
				
				 
	// Collapse the previous menu
	            $jpreviousMenu.animate({ width: 0 }, {duration: 480, queue: false} );
 
	// Subtract the width of the previous menuContainer's menu from the menuContainer (only if its menu is displayed)
	            if($jpreviousMenu.width() > 0) $jpreviousMenuContainer.animate({width: ('-=' + $jpreviousMenu.attr('fullWidth'))}, 500);
 
	// Expand the current menu and its menuContainer if it's not showing
				//sessvars.menu=$j(this).parent();
	            if($jcurrentMenu.width() == 0) {
	                // Increase the menuContainer width by the full width of its menu
	                $jcurrentMenuContainer.animate({width: ('+=' + $jcurrentMenu.attr('fullWidth'))}, 480);
	                // Increase the menuContainer to its full width
	                $jcurrentMenu.animate({ width: $jcurrentMenu.attr('fullWidth') }, 500);
	            }
				
	    });
	});
*/
