function placeFooter() {
  if(parseInt($('#wrapper').height() + $('#footer_wrap').height()) > $('#wrap').height()) {
    var $dif = parseInt($('#wrapper').height() + $('#footer_wrap').height()) - $('#wrap').height();
    $('#wrap').css('padding-bottom', $dif);
  } else {
    $('#wrap').css('padding-bottom', 0);
  }
}
$(document).ready(function(){
  var maxHeight=0;
  $('#boxes .box').each(function(){
    if ($(this).height() > maxHeight)
      maxHeight = $(this).height();
  });
  $('#boxes').css('height', maxHeight+35);
  placeFooter();
  $(".youtube-embed").colorbox({
    iframe:true, 
    innerWidth:560, 
    innerHeight:315,
	opacity: 0.5
  });
});
$(window).resize(function(){
  placeFooter();
});
