/**
 * @author mario
 */
 
 $(document).ready(function() {
		
			$('#menu a').hover(
			
				function() {
				
					$(this).addClass("menu_underlined");
			
			
			
				}, 
				
				function() {
				
					$(this).removeClass("menu_underlined");
				
				}
				
			);
			
});
