$(document).ready(function() {
						   
// menu
    $(function() {
        $('ul#menu').lavaLamp();
    });



// gallery


    $(".over img")
        .mouseover(function() { 
            var src = $(this).attr("src").match(/[^\.]+/) + "-over.jpg";
            $(this).attr("src", src);
        })
        .mouseout(function() {
            var src = $(this).attr("src").replace("-over", "");
            $(this).attr("src", src);
        });


	$("a[rel='colorbox']").colorbox({maxWidth:'90%', maxHeight:'90%'});


//faq
		$('div#hide:eq(0)> div').hide();
		$('div#hide:eq(0)> h3.faq').click(function() {
		$(this).next().slideToggle('slow');
	});
	  
});


