jQuery(function($) {
	$('#menu li a, a.more').hover(
		function(){ $(this).stop(true); $(this).animate({ backgroundPosition: '(5px 0px)' }, {duration:200}); },
		function(){ $(this).animate({ backgroundPosition: '(0px 0px)' }, {duration:400}); }
	);
	$('#categories li.main ul').hide();
	$('#categories li.main img').css('opacity',0.5);
	$('#categories li.main ul').css('opacity',0.8);
	$('#categories li.main').mouseover( function(){	
		$('ul',this).stop(true,true);
		$('img',this).stop(true,true);
		$('h1',this).stop(true,true);
		$('ul',this).slideDown('fast');
		$('img',this).fadeTo('fast',1);
		$('h1',this).css({color:'#fff',background:'#000'});
	});
	$('#categories li.main').mouseleave( function(){	

		$('ul',this).slideUp();
		$('img',this).fadeTo('slow',0.5);
		$('h1',this).css({color:'#000',background:'#fff'});
	});
	$('#categories li.main ul li a').hover(
		function(){ $(this).css('backgroundColor','#900'); },
		function(){ $(this).css('backgroundColor','#000'); }
	);
	$('#downloads .downloads').css('opacity',0.6);
	$('#downloads .downloads').hover(
		function(){ $(this).stop(true); $(this).fadeTo('fast',1); },
		function(){ $(this).fadeTo('fast',0.6); }
	);
});
