$(document).ready(function(){
	
	$(".toggleList h2").mouseover( function() {
	
		$(this).css("background-color", "#efefef")
		$(this).parent().css("background-color", "#efefef")
	
	});
	
	$(".toggleList h2").mouseout( function() {
	
		$(this).css("background-color", "white")
		$(this).parent().css("background-color", "white")
	
	});	

	$(".toggleList h2").click (function () {
		$(this).next().toggleClass("close");
		$(this).next().next().toggleClass("detail")
	});


	$(".toggleList a.btn").click (function () {
		$(this).toggleClass("close");
		$(this).next().toggleClass("detail")
	});
});