// JavaScript Document
$(document).ready(function(){
	
$("div.contacts").hide(); 


$("input.buttonBslidedown").click(function(){ $("div.contentToChange").find("p.firstparagraph:hidden").slideDown("slow"); });
$("input.buttonBslideup").click(function(){ $("div.contentToChange").find("p.firstparagraph:visible").slideUp("slow"); });


$("div#footer").hover(function(){$("div.contacts").animate({opacity: 1,height: 'toggle'}); return false;});
});

	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);
	}

	
	function loadLamps(easing) {
		$('#clickVertical').lavaLamp({
			fx: 'easeOut'+easing,
			speed: 1000,
			setOnClick: false
		});
	}
	

	$(function() {		
		loadLamps(easing);
		$('.cycle').cycle({
		fx: 'fade'
		});
	});


