//SLIDESHOWNEWS

$(document).ready(function() {
    $('.slideshowNews').cycle({
		fx: 'fade', timeout: 5000 // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});
});



// FEATURED
$(document).ready(function() {
	$("#featured").css("overflow", "hidden");
	
	$("ul#slides").cycle({
		fx: 'fade',
		timeout: 8000,
		pause: 1,
		prev: '#prev',
		next: '#next'
	});
	
	$("#featured").hover(function() {
    	$("ul#nav").fadeIn();
  	},
  		function() {
    	$("ul#nav").fadeOut();
  	});
	
});
