$(window).load(function() 
	{
	over();
	startCycle();
	});

function over()
	{
	$('.news')
		.hover(
			function(){
			$(this).find('.logoNews').animate({opacity:0.5},100);
			$(this).find('a').addClass('hover');
			}
			,function(){
			$(this).find('.logoNews').animate({opacity:1},100);
			$(this).find('a').removeClass('hover');
			}
		);
	}


function startCycle()
	{
	$('#slideData').cycle({ 
		fx:     'fade', 
		speed:  'slow', 
		timeout: 6000, 
		next:   '#next', 
		prev:   '#prev' 
		});

	$('#slideShow').hover(
		function(){
			$('#slideNav').fadeIn();
		}
		,function(){
			$('#slideNav').fadeOut();
		});
	}