	jQuery.noConflict();

	jQuery(document).ready(function($) {


		jQuery('#navigation ul li').hover(function() {
			$(this).find('a').stop(true).animate({opacity:'0.5'},300);
			$(this).stop(true).animate({ backgroundColor: '#ffffff' }, 300);
		}, function() {
			$(this).find('a').stop(true).animate({opacity:'1'},300);
			$(this).stop(true).animate({ backgroundColor: '#f8f8f8' }, 300);
		});		


		$('#fader').cycle({
			delay:  1000, 
			speed:  1000,
			timeout: 3500
		});	

		var config = {    
			 sensitivity: 5, // number = sensitivity threshold (must be 1 or higher)    
			 interval: 200, // number = milliseconds for onMouseOver polling interval    
			 over: makeVisible, // function = onMouseOver callback (REQUIRED)    
			 timeout: 200, // number = milliseconds delay before onMouseOut    
			 out: makeHidden // function = onMouseOut callback (REQUIRED)    
		};

		$("#navigation-inner ul li").hoverIntent( config )
		
		
	});  

	Cufon.replace('h2,h3,#navigation-inner ul li.replace span', {
		hover: true,
		hoverables: { a: true }
	});		
	
	function makeVisible(){ jQuery(this).children("ul").show();}
	function makeHidden(){ jQuery(this).children("ul").hide();}