$(document).ready(function(){

	$('.bgfade').cycle({
		fx: 'fade',
		speed: 5000,
		timeout: 2000
	});
	
	$('.featured').each(function() {
        $(this).hover(function() {
            $(this).stop().animate({ opacity: 0.8 }, 300);
        },
       function() {
           $(this).stop().animate({ opacity: 1.0 }, 300);
       });
    });
    
});
