$(document).ready(function(){
	top_nav_anim();
});

function top_nav_anim() {
	$(".active").css("height", "100px");
	$("#top_nav a")
		.mouseover(function(){
			if ($(this).attr("class") != "active") {
				$(this).stop().animate({
					"height":"100px"
				}, 100, "swing");
			}
		})
		.mouseout(function(){
			if ($(this).attr("class") != "active") {
				$(this).stop().animate({
					"height":"70px"
				}, 350, "swing");
			}
		})
}