// JavaScript Document

	jQuery().ready(function(){
		// highly customized accordion
	jQuery('.bottom_navi >div').hide();
	jQuery('.menu-bottom ul li a').mouseover(function() {
			jQuery('.' + jQuery(this).attr('rel')).fadeIn("slow");
	});
		jQuery('.menu-bottom ul li a').mouseout(function() {
			jQuery('.'+jQuery(this).attr('rel')).hide();
			var $class = '.' + jQuery(this).attr('rel');
				jQuery('.'+jQuery(this).attr('rel')).mouseover(function() {
				jQuery($class).show();
			});
			jQuery($class).mouseout(function() {
				jQuery($class).hide();
			});
		});
		
	});
