$(document).ready(function(){
	
	$(".toggle_container").hide();

	$("h2.trigger").toggle(function(){
		$(this).addClass("active"); 
		}, function () {
		$(this).removeClass("active");
	});
	
	$("h2.trigger").click(function(){
		$(this).next(".toggle_container").slideToggle(900);
	});

});

$(document).ready(function(){
$("a, a.img").hover(
function() {
$(this).stop().animate({"opacity": "0.2"}, "fast");
},
function() {
$(this).stop().animate({"opacity": "1"}, "slow");
});
 
});

  $(document).ready(function() {
        $('#slider').s3Slider({
            timeOut: 3200
        });
    });

 $(document).ready(function(){
			$(".lightbox").lightbox();
		});
