// 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();
			});
		});
		jQuery('#list2').accordion({
			event: 'mouseover',
			active: '.selected',
			selectedClass: 'active',
			animated: "bounceslide",
			header: "dt"
		}).bind("change.ui-accordion", function(event, ui) {
			jQuery('<div>' + ui.oldHeader.text() + ' hidden, ' + ui.newHeader.text() + ' shown</div>').appendTo('#log');
		});
	});
