SHOW_SPEED = 250;
HIDE_SPEED = 500;
MIN_OPACITY = 0.9;
MAX_OPACITY = 0.99;
jQuery('a:hover img').css('opacity', '0.9');

jQuery('a').hover(
	function(){jQuery(this).children('img').stop().fadeTo(SHOW_SPEED, MAX_OPACITY);}, function(){jQuery(this).children('img').stop().fadeTo(HIDE_SPEED, MIN_OPACITY)});


jQuery('#manual a.show').click(function(e){
	e.preventDefault();
	jQuery(this).next('p').slideToggle('slow');
	if(jQuery(this).parent('li').attr('class') == 'open')
		jQuery(this).parent('li').removeClass('open');
	else
		jQuery(this).parent('li').addClass('open');
});