$(document).ready(function(){

// ---------------------------------------------------------
// Toggle
// ---------------------------------------------------------

$(".toggle").each(function(){

		$(this).find(".box").hide();

});

$(".toggle").each(function(){

		$(this).find(".trigger").click(function() {

				$(this).toggleClass("active").next().stop(true, true).slideToggle("normal");

				return false;

		});

});



// ---------------------------------------------------------
// Header widget toggle
// ---------------------------------------------------------
jQuery("#widget-header h4").toggle(function(){
	jQuery("#widget-header").animate({top:"0"}, "normal").addClass("active");
}, function(){
	jQuery("#widget-header").animate({top:"-130"}, "normal").removeClass("active");
	jQuery("div.wpcf7-response-output").fadeOut("fast");
});	

});
