
// para centrar verticalmente a imagem de destaque no detalhe do hotel

$(function() {
    $('#centrar').each(function() {
	this.style.position = 'absolute';
	this.style.top = $(this).parent().height()/2 + 'px';
	this.style.marginTop = -$(this).height()/2 + 'px';
    });
});

