$(document).ready(function() {
	$('#navigation li.contacto').hover(
		function(){
			$(this).animate({height: '+=160'},150)
		},
		function(){
			$(this).animate({height: '50'},150)
		}
	); 
});

