jQuery(document).ready(function($) {
	
	$('.featured').cycle({ 
	    fx: 'fade', 
	    speed: '750',
		fit: 1,
		timeout: '4000'
	});

	$("ul.work-thumbs li a").hover( function () {
	    $(this).stop().fadeTo(120, 0.7);
	  }, function () {
	    $(this).stop().fadeTo(300, 1);
	  }
	);

	
});
