/*
 *
 *
 *
 *
 */

$(document).ready(function() {
  //make the footer panels a big link (entire unit is clickable)
  $("#panels li").click(function(e) {
    location.href = $(this).find('a').attr('href');
  });

  $(".post a[href$='.jpg']").each(function() {
    if ($(this).children('img').length > 0) {
      $(this).colorbox();
    }
  });

  $(".post a[href$='.gif']").each(function() {
    if ($(this).children('img').length > 0) {
      $(this).colorbox();
    }
  });

  $(".post a[href$='.png']").each(function() {
    if ($(this).children('img').length > 0) {
      $(this).colorbox();
    }
  });

  $(".post a[href$='.jpeg']").each(function() {
    if ($(this).children('img').length > 0) {
      $(this).colorbox();
    }
  });
});