$(function() { $(".lavaLamp").lavaLamp({ fx: "backout", speed: 900 })});

  $(document).ready(function(){
	$('h3.faqTitle').click(function() { 
    $(this).next().toggle("slide",{ 
        direction: "up" 
    }, 
   500); 
});

$(".menu a").hover(function() {
		$(this).next("em").animate({opacity: "show", top: "185"}, "slow");
	}, function() {
		$(this).next("em").animate({opacity: "hide", top: "175"}, "fast");
	});
  });
