// JavaScript Document

/* POSSIBLE "fx" FOR ANIMATION
 *
 * BASIC EASE ONLY ANIMATIONS
 * easeInQuad		- Quadratic formula used to ease in
 * easeOutQuad		- Quadratic formula used to ease out
 * easeInOutQuad	- Quadratic formula used to ease in and out
 * easeInCubic		- Cubic formula used to ease in
 * easeOutCubic		- Cubic formula used to ease out
 * easeInOutCubic	- Cubic formula used to ease in and out
 * easeInQuart		- Quarter formula used to ease in
 * easeOutQuart		- Quarter formula used to ease out
 * easeInOutQuart	- Quarter formula used to ease in and out
 * easeInQuint		- Quintatic formula used to ease in
 * easeOutQuint		- Quintatic formula used to ease out
 * easeInOutQuint	- Quintatic formula used to ease in and out
 * easeInSine		- Sine formula used to ease in 
 * easeOutSine		- Sine formula used to ease out
 * easeInOutSine	- Sine formula used to ease in and out
 * easeInExpo		- Exponecial formula used to ease in
 * easeOutExpo		- Exponecial formula used to ease out
 * easeInOutExpo	- Exponecial formula used to ease in and out
 * easeInCirc		- Square Root formula used to ease in
 * easeOutCirc		- Square Root formula used to ease out
 * easeInOutCirc	- Square Root formula used to ease in and out
 * 
 * EXCITING ANIMATION 
 * easeInElastic	- Elastic Bounce in
 * easeOutElastic	- Elastic Bounce out
 * easeInOutElastic	- Elastic Bounce in and out
 * easeInBack		- Go Past the Object in
 * easeOutBack		- Go Past the Object out
 * easeInOutBack	- Go Past the Object in and out
 * easeInBounce		- Bounce on in
 * easeOutBounce	- Bounce on out
 * easeInOutBounce	- Bounce on in and out
*/

$(function() {
	$('ul#menuBar').lavaLamp({
		fx: "easeOutBack",
		returnDelay: 500,
	});
});
