/* 
	JavaScript by Krzysztof Wolniak
	WWW: http://wolniak.org
	(c) All rights reserved
*/

$(document).ready(function(){

	$('#menu a').hover(function(){
		$(this).fadeTo(0, 0, function(){
			$(this).fadeTo("slow", 1);
		});
	});
	
});
