$(document).ready(function() {
	$("nav a").each(function() {
		$(this).mouseover(function() {
			$(this).parent().find("mark").animate({"opacity":"1", "top" : "50px"}, 400); 
		})
		$(this).mouseout(function() {
			$(this).parent().find("mark").animate({"opacity":"0", "top" : "30px"}, 400); 
		})
	})
})

