$(document).ready(function() {

	$(".question .content").hide();
	$(".title-link").hover(
	function(){
		$(this).toggleClass("hover");
	},
	function(){
		$(this).toggleClass("hover");
	});
	$(".title-link").click(function(){
		$(this).siblings(".content").toggle();
		$(this).toggleClass("selected");
		_gaq.push(['_trackPageview', $(this).attr('id')]);
	});
	
	$("#tabs").tabs({ cookie: { expires: 30 } });
	$(".tabbed-content h2").hide();


	$(".file_type a").click(function(){
		_gaq.push(['_trackPageview', $(this).attr('href')]);
	});

});
