jQuery(document).ready(function() {

  // Validate external links
  jQuery('a.target_blank').attr('target', '_blank');

  // Activate the Colorbox images
  jQuery('#sidebar a').colorbox({
    title: false
  });

  check_width();

  jQuery(window).resize(function() {
    check_width();
  });
});

function check_width() {
  if(jQuery(window).width() <= 500) {
    jQuery('body').addClass('mobile');
  } else {
    jQuery('body').removeClass('mobile');
  }
}
