// JavaScript Document
$(document).ready(function() {		
	$('#siderbarArchives .archivesByDatetitle').click(function() {			
		$('#siderbarArchives .tab').removeClass("tabOn");
		$('#siderbarArchives .tab').addClass("tabOff");
		$(this).addClass("tabOn");
		$("#siderbarArchives .archivesByCategory").hide();
		$("#siderbarArchives .archivesByDate").show();
	});
	$('#siderbarArchives .archivesByCategorytitle').click(function() {			
		$('#siderbarArchives .tab').removeClass("tabOn");
		$('#siderbarArchives .tab').addClass("tabOff");
		$(this).addClass("tabOn");
		$("#siderbarArchives .archivesByDate").hide();
		$("#siderbarArchives .archivesByCategory").show();
	});
	
	
	$("#siderbarArchives .tab").hover(
		function () {
			if (!$(this).hasClass("tabOn"))
			$(this).addClass("tabHover");
		}, 
		function () {
			$(this).removeClass("tabHover");
	});
	
	
});