$(document).ready(function(){

	$('#banner-cycle').cycle({ 
    	fx: 'fade', 
    	speed: 2500,
    	timeout:5000
	});


	$("#navigation li").hover(
		function(){$(this).addClass("hover");},
		function(){$(this).removeClass("hover");}		
	);

});