$(function() {

	$('#next').fadeTo('fast', 0);	
	$('#prev').fadeTo('fast', 0);

	$('#images ul').cycle({ 
	    fx:     'fade', 
	    speed:  'fast', 
	    timeout: 0, 
	    next:   '#next', 
	    prev:   '#prev' 
	});
	
	$('#portfolio #images ul li').css("background","transparent");

	$('#images ul img,#next,#prev').hover(function(){
       $('#prev,#next').stop().fadeTo('fast', 1);
   	},function(){
       $('#prev,#next').stop().fadeTo('slow', 0);

	});
}); 
