// Lavalamp menu
$(function() {
	$("#lava").lavaLamp({
		fx: "backout", 
		speed: 700,
});
});

// Slideshow
$(document).ready(function() {
    $('.slideshow').cycle({
		fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		timeout:       4000,  // milliseconds between slide transitions (0 to disable auto advance) 
    	timeoutFn:     null,  // callback for determining per-slide timeout value:  function(currSlideElement, nextSlideElement, options, forwardFlag) 
    	continuous:    0,     // true to start next transition immediately after current one completes 
    	speed:         1000  // speed of the transition (any valid fx speed value) 
	});
});
