$(document).ready(function(){

	//Hide (Collapse) the toggle containers on load
	$(".restaurant_container").hide(); 

	//Switch the "Open" and "Close" state per click
	$("h3.restaurant").toggle(function(){
		$(this).addClass("active01");
		}, function () {
		$(this).removeClass("active01");
	});

	//Slide up and down on click
	$("h3.restaurant").click(function(){
		$(this).next(".restaurant_container").slideToggle("normal");
	});

});

$(document).ready(function(){

	//Hide (Collapse) the toggle containers on load
	$(".bar_container").hide(); 

	//Switch the "Open" and "Close" state per click
	$("h3.bar").toggle(function(){
		$(this).addClass("active02");
		}, function () {
		$(this).removeClass("active02");
	});

	//Slide up and down on click
	$("h3.bar").click(function(){
		$(this).next(".bar_container").slideToggle("normal");
	});

});

$(document).ready(function(){

	//Hide (Collapse) the toggle containers on load
	$(".salon_container").hide(); 

	//Switch the "Open" and "Close" state per click
	$("h3.salon").toggle(function(){
		$(this).addClass("active03");
		}, function () {
		$(this).removeClass("active03");
	});

	//Slide up and down on click
	$("h3.salon").click(function(){
		$(this).next(".salon_container").slideToggle("normal");
	});

});

$(document).ready(function(){

	//Hide (Collapse) the toggle containers on load
	$(".golf_container").hide(); 

	//Switch the "Open" and "Close" state per click
	$("h3.golf").toggle(function(){
		$(this).addClass("active04");
		}, function () {
		$(this).removeClass("active04");
	});

	//Slide up and down on click
	$("h3.golf").click(function(){
		$(this).next(".golf_container").slideToggle("normal");
	});

});

$(document).ready(function(){

	//Hide (Collapse) the toggle containers on load
	$(".news_container").hide(); 

	//Switch the "Open" and "Close" state per click
	$("h3.news").toggle(function(){
		$(this).addClass("active05");
		}, function () {
		$(this).removeClass("active05");
	});

	//Slide up and down on click
	$("h3.news").click(function(){
		$(this).next(".news_container").slideToggle("normal");
	});

});

$(document).ready(function(){

	//Hide (Collapse) the toggle containers on load
	$(".sell_container").hide(); 

	//Switch the "Open" and "Close" state per click
	$("h3.sell").toggle(function(){
		$(this).addClass("active06");
		}, function () {
		$(this).removeClass("active06");
	});

	//Slide up and down on click
	$("h3.sell").click(function(){
		$(this).next(".sell_container").slideToggle("normal");
	});

});

$(document).ready(function(){

	//Hide (Collapse) the toggle containers on load
	$(".buy_container").hide(); 

	//Switch the "Open" and "Close" state per click
	$("h3.buy").toggle(function(){
		$(this).addClass("active07");
		}, function () {
		$(this).removeClass("active07");
	});

	//Slide up and down on click
	$("h3.buy").click(function(){
		$(this).next(".buy_container").slideToggle("normal");
	});

});