$(document).ready(
	function(){ 
		
		// TOGGLER
		$(".toggle").next().hide();
		$(".toggle").click(function(){
			if( $(this).next().is(":hidden") ) {
				$(this).next().slideDown('fast');
			} else {
				$(this).next().slideUp('fast');
			}
		});
	}
);