<!--
	var query = new Object();
	window.location.search.replace(
	new RegExp( "([^?=&]+)(=([^&]*))?", 'g' ),
		function( $0, $1, $2, $3 ){
			query[ $1 ] = $3;
		}
	);
	easing = query['e'] || 'Expo';
	
	function loadEasing(e) {
		location.href = location.pathname+'?e='+e;
	}
	
	function setEasing(e) {
		loadLamps(e);
	}

// for dynamic easing changes		
	function loadLamps(easing) {
		$('.start_zero').lavaLamp({		
			speed: 400,
			homeTop:-20
		});

		$('.start_one').lavaLamp({		
			speed: 400,
			startItem:0
		});

		$('.start_two').lavaLamp({		
			speed: 400,
			startItem:1
		});

		$('.start_three').lavaLamp({		
			speed: 400,
			startItem:2
		});

		$('.start_four').lavaLamp({		
			speed: 400,
			startItem:3
		});
		
		$('.start_five').lavaLamp({		
			speed: 400,
			startItem:4
		});
		
		$('.start_six').lavaLamp({		
			speed: 400,
			startItem:5
		});
		
		$('.start_seven').lavaLamp({		
			speed: 400,
			startItem:6
		});
		
		$('.start_eight').lavaLamp({		
			speed: 400,
			startItem:7
		});
		
		$('.start_nine').lavaLamp({		
			speed: 400,
			startItem:8
		});
		
		$('.start_ten').lavaLamp({		
			speed: 400,
			startItem:9
		});
		
		$('.start_eleven').lavaLamp({		
			speed: 400,
			startItem:10
		});
		
		$('.start_twelve').lavaLamp({		
			speed: 400,
			startItem:11
		});


	}
	
// jquery initialize:
	$(function() {
		$('#menu').lavaLamp({fx: 'swing', speed: 333});
		loadLamps(easing);
		
		$('select#easing option[value='+easing+']').attr('selected','selected');
		$('.easingLabel').text(easing);
	});
//console.log();
-->