$(function() {
	$('#feat').cycle({ 
    	fx:     'fade', 
    	speed:  'fast', 
    	timeout: 4500, 
    	next:   '#next', 
    	prev:   '#prev'  
	});
});
jQuery.fn.fadeToggle = function(speed, easing, callback) {
   return this.animate({opacity: 'toggle'}, speed, easing, callback);
};
$(document).ready(function(){
	$("#show-cats").click(function() {
		$("ul#cats").slideToggle("fast");
	});
});
$(document).ready(function(){
	$("#regular").click(function() {
		$(".entry p").show();
		$("p.boxes").hide();
	});
});