//Togglebox by analog multimedia - www.analog.de

$(document).ready(function() {
  
	//Togglebox

	jQuery(".toggle_ce .toggler").click(function() {
		//	Options: slideToggle, fadeToggle - numeric value is animation time in ms									 
		$(this).closest(".toggle_ce").children(".togglebox").slideToggle(400, function() {
		$(this).closest(".toggle_ce").children(".toggler").toggleClass('opened');
		});
	});


});


