// JavaScript Document

$(document).ready(function(){


// Footer toggle hide show
	$(".toogle_block").hide();
		$('.toogle_up').click(function () {
		$(this).toggleClass("active").next().slideToggle("slow");
		});
		});

