$(document).ready(function(){
	
	$(".slider .servicetype").hide();

	$(".slider h2").click(function(){
		$(this).next(".servicetype").slideToggle("slow").siblings("div:visible").slideUp("slow");
		$(this).toggleClass("active");
		$(this).siblings("h2").removeClass("active");
	});

});
