$(document).ready(function(){

	$("#expandHrMain").click(function(){
	  $("#hrGames").hide();
	  $("#hrPoll").hide();
	  $("#hrBooks").hide();
	  $("#hrMilf").hide();
	  $("#hrHotReads").show();	  
	});

	$("#expandHrGames").click(function(){
	  $("#hrGames").show();
	  $("#hrPoll").hide();
	  $("#hrBooks").hide();
	  $("#hrMilf").hide();
	  $("#hrHotReads").hide();	  
	});

	$("#expandHrPoll").click(function(){
	  $("#hrGames").hide();
	  $("#hrPoll").show();
	  $("#hrBooks").hide();
	  $("#hrMilf").hide();
	  $("#hrHotReads").hide();	  	  
	});

	$("#expandHrBooks").click(function(){
	  $("#hrGames").hide();
	  $("#hrPoll").hide();
	  $("#hrBooks").show();
	  $("#hrMilf").hide();
	  $("#hrHotReads").hide();	  	  
	});

	$("#expandHrMilf").click(function(){
	  $("#hrGames").hide();
	  $("#hrPoll").hide();
	  $("#hrBooks").hide();
	  $("#hrMilf").show();
	  $("#hrHotReads").hide();	  	  
	});

	$("#tsr1").click(function(){
	  $("#tsr1").addClass("tsrhActive");
	  $("#tsr2").removeClass("tsrhActive");
	  $("#tsr3").removeClass("tsrhActive");
	  $("#tsr4").removeClass("tsrhActive");
	  $("#tsl1").show();
	  $("#tsl2").hide();
	  $("#tsl3").hide();
	  $("#tsl4").hide();
	});
	$("#tsr2").click(function(){
	  $("#tsr1").removeClass("tsrhActive");
	  $("#tsr2").addClass("tsrhActive");
	  $("#tsr3").removeClass("tsrhActive");
	  $("#tsr4").removeClass("tsrhActive");
	  $("#tsl1").hide();
	  $("#tsl2").show();
	  $("#tsl3").hide();
	  $("#tsl4").hide();
	});
	$("#tsr3").click(function(){
	  $("#tsr1").removeClass("tsrhActive");
	  $("#tsr2").removeClass("tsrhActive");
	  $("#tsr3").addClass("tsrhActive");
	  $("#tsr4").removeClass("tsrhActive");
	  $("#tsl1").hide();
	  $("#tsl2").hide();
	  $("#tsl3").show();
	  $("#tsl4").hide();
	});
	$("#tsr4").click(function(){
	  $("#tsr1").removeClass("tsrhActive");
	  $("#tsr2").removeClass("tsrhActive");
	  $("#tsr3").removeClass("tsrhActive");
	  $("#tsr4").addClass("tsrhActive");
	  $("#tsl1").hide();
	  $("#tsl2").hide();
	  $("#tsl3").hide();
	  $("#tsl4").show();
	});
});
