$(document).ready(function() {
  $('.fadein').fadeIn(3000);

  var height = $('.catDescription').height();
  var innerHeight = $('.product-beauty').innerHeight();

  $('.catDescription').css({ 'margin-top': (innerHeight - height) / 2 });
});


