// execute your scripts when the DOM is ready. this is a good habit

	$(function() {
            $(".nav").lavaLamp({ 
                fx: "backout", 
                speed: 1300,
                click: function(event, menuItem) {
                    return true;
                }
            });
        });

$(document).ready(function() {

$('.slider') 
.before('<div id="nav">') 
.cycle({ 
  fx:      'scrollDown', 
  	speed:	4000,
    speedIn:  2000, 
    speedOut: 500, 
    easeIn:  'bounceout', 
    easeOut: 'backin', 
    delay:   -2000, 
    pager:  '#nav' 
});


});
