$(function(){
	// zen button hover
	$(".menu ul li a").hover(function(){
		$(this).find(".corner").stop().animate({bottom: "0px"}, "fast") 
	}, function(){
		$(this).find(".corner").stop().animate({bottom: "-5px"}, "fast")
	});
});
$(function(){
	// zen button hover
	$(".menu ul li.selected a").hover(function(){
		$(this).find(".corner").stop().animate({bottom: "0px"}, "fast") 
	}, function(){
		$(this).find(".corner").stop().animate({bottom: "0px"}, "fast")
	});
});

$(function(){
	// zen button hover
	$(".sideBoxContent ").hover(function(){
		$(this).find(".button").stop().animate({right: "10px"}, "slow") 
	}, function(){
		$(this).find(".button").stop().animate({right: "-100px"}, "slow")
	});
});

