$(function(){

	$(".question-content, .afterparty-content, .faq-content").hide();
	$(".question-title, .afterparty-title, .faq-title").hover(function(){
		$(this).css("cursor","pointer"); 
		$(this).css("color","#f00"); 
	}, function(){
		$(this).css("cursor","default");
		$(this).css("color","#666"); 
	});

	$(".question-title").click(function(){
		$(".question-title img").css("opacity", "0.5");
		$(".question-title img").fadeTo("slow", "1.0");
		$(".question-content").slideToggle("slow");
	});

	$(".afterparty-title").click(function(){
		$(".afterparty-title img").css("opacity", "0.5");
		$(".afterparty-title img").fadeTo("slow", "1.0");
		$(".afterparty-content").slideToggle("slow");
	});

	$(".faq-title").click(function(){
		$(".faq-title img").css("opacity", "0.5");
		$(".faq-title img").fadeTo("slow", "1.0");
		$(".faq-content").slideToggle("slow");
	});

});
