
$(function(){
	//$('.hhrotate').css('filter','');
	$('#fader').fader({length: 500, delay: 2000});

	$('#navigation li').hover(
		function(){ $(this).find('ul.flyout:first').show(); },
		function(){ $(this).find('ul.flyout:first').hide(); }
	);
});

