$(document).ready(function() {
  $('.rounded').corner();
  $('.toggleContent').add('.showContent').hide();
  $('.clickable').click(function(){
    $(this).effect('highlight', {color: '#ffffff'}, 'fast');
  });
  $('.toggleButton').click(function() {
    $(this).next('.toggleContent').slideToggle('fast');
  });
  $('.showButton').click(function() {
    $(this).hide();
    $(this).next('.showContent').fadeIn('fast');
  });
  // Open all external links in a new browser tab/window
  $('a[href^="http://"]').attr('target', '_blank');
});
