$(document).ready(function() {
	$('#faves ul').jcarousel();
	
	$("#faves").hover(function(){
		$(this).find('div.jcarousel-next, div.jcarousel-prev').each( function(index) { $(this).fadeIn('slow'); } );
	}, function(event) {
		$(this).find('div.jcarousel-next, div.jcarousel-prev').each( function(index) { $(this).fadeOut('slow'); } );
	});
	
	$('div.jcarousel-next, div.jcarousel-prev').each( function(index) { $(this).hide(); } );
});
