$(document).ready(function() {

	// #################################
	// CONTENT TOGGLE
	// #################################
	$(".toggle_div").hide(); 
			
	$("h6.toggle").toggle(function(){
		$(this).addClass("active");
		}, function () {
		$(this).removeClass("active");
	});

	$("h6.toggle").click(function(){
		$(this).next(".toggle_div").slideToggle();
	});
  
	// ON MOUSE OVER
    $(".btn").hover(function () {

        // SET OPACITY TO 100%
        $(this).stop().animate({
        opacity: 0.6
        }, "fast");
    },

    // ON MOUSE OUT
    function () {

        // SET OPACITY BACK TO 100%
        $(this).stop().animate({
        opacity: 1
        }, "fast");
    });
		
}); // END OF DOCUMENT READY
