$(document).ready(function() { 
	
	// Project images slideshow
	$('#slideshow #img-container')
	.cycle({
	    fx:     'fade', 
	    speed:  300
	});
	
	// Button that slides to the top
	$('.top-btn').live('click', function(e) {
	$.scrollTo('body', 1000);
	e.preventDefault();
	})
});
