$(document).ready(function() {
  var lightbox_options = {fitToScreen: true,
		fileLoadingImage : '/wp-content/themes/huffpuff/images/lightbox/loading.gif',
		fileBottomNavCloseImage : '/wp-content/themes/huffpuff/images/lightbox/closelabel.gif'};
  $(".entry a[href$='.jpg'], .wp-caption a[href$='.jpg'], .entry a[href$='.gif'], .wp-caption a[href$='.gif']").lightbox(lightbox_options);
  $("#content h1, #footer-widgets .widget").prepend("<div class='twiddle-top'></div><div class='twiddle-bottom'></div>")
  $('.image-home').cycle();
});

window.onload = function(){
  var containers = $(".make-equal");
  containers.each(function(){
    var max_height = 0;
    $(".widget", this).each(function(){
      if ($(this).height() > max_height) max_height = $(this).height();
    }).each(function(){
      $(this).height(max_height);
    });
  });
};

