$(document).ready(function(){
	$(".specifications ul").hide();
	$(".specifications h5").click(function(){
		$(this).next("ul").slideToggle("slow")
		.siblings("ul:visible").slideUp("slow");
		$(this).toggleClass("active");
		$(this).siblings("h5").removeClass("active");
	});
});