/**
 * @file : navbar.js
 * align vertically the items of the secondary menu
 */
$(document).ready(function(){
	$(".nav_level_2 li a").each(function(){
	    if($(this).height()>13){
	        $(this).removeClass("small");
	    }else{
	       $(this).addClass("small");
	    }
	    $(this).css("height","36px");
	});
	
});
