$(document).ready(function(){
	$('#media').cycle({
		fx:     'fade',
		timeout: 4000,
		speed:   2500,
		random: 1
	});
	
	$('#menu>ul>li').hover(
		function() {
			$(this).addClass('hover');
		},
		function() {
			$(this).removeClass('hover');
		}
	);
});
