$(document).ready(function() {
	if(window.location.hash !== '#emailThis') {
		$('#emailThis').hide();
	}
	else {
		$('#email').addClass('active');
	}
	$('#email').click(function() {
		$('.entry_tools a.active').not(this).removeClass('active');
		$(this).toggleClass('active');
		$('#shareThis').hide();
		$('#emailThis').toggle();
		return false;
	});
	
	if(window.location.hash !== '#shareThis') {
		$('#shareThis').hide();
	}
	else {
		$('#share').addClass('active');
	}
	$('#share').click(function() {
		$('.entry_tools a.active').not(this).removeClass('active');
		$(this).toggleClass('active');
		$('#emailThis').hide();
		$('#shareThis').toggle();
		return false;
	});
});