$('document').ready(function(){
	//$('.editools').hide();		
	$(".editable").mouseover(function(event){
	       	$(".editools",this).show();
	       });
	       
	       $(".editable").mouseout(function(event){
	       	$(".editools",this).hide();
	       });
	       
	  		$(".postfooter span").hide();
	  		//$(".tags").hide();
	  		$(".post").mouseover(function(){
	  			$(".postfooter span",this).show();
	  		//	$(".tags",this).show();
	  		});
	  		$(".post").mouseout(function(){
	  			$(".postfooter span",this).hide();
	  		//	$(".tags",this).hide();
	  		});
			//$(".hikecal .old").css("opacity","0.5");
	$(".mapicon").css("cursor","hand");		
	$(".mapicon").click(function(event){
		$(".hikemap",$(this).parent()).show();
	})
});

