		// ---------------------------------------------------------
		// Toggle
		// ---------------------------------------------------------
		

(function($) {
	$(document).ready( function() {
		$(".themeblvd-toggle").each(function(){
		
		    $(this).find(".box").hide();
		
		});
		
		$(".themeblvd-toggle").each(function(){
		
		    $(this).find(".trigger").click(function() {
		
		        $(this).toggleClass("active").next().stop(true, true).slideToggle("slow");
		
		        return false;
		
		    });
		
		});
	});

})(jQuery);

