$(document).ready(function() {
  $('#quick_links a, #our_sponsors, #vaude_texting a').fadeTo('fast', 0.5).hover(function() {
    $(this).stop().fadeTo(400, 1);
  }, function() {
    $(this).stop().fadeTo(400, 0.5);
  });

  $('[rel=external]').each(function() {
      $(this).attr("target", "_blank");
  });

  //
  // Boxy.MODAL_OPACITY = 0.3;
  // $('#say_hello a, #newsletter a').boxy({modal:true});
  //
  // if ($('#flash_panel').length > 0) {
  //   new Boxy($('#flash_panel').html(), { title: 'Notice', modal:true });
  // }

  $('#quick_links').hover(function() {
    $(this).stop().animate({ bottom: '0px' });
  }, function() {
    $(this).stop().animate({ bottom: '-100px' });
  }).hover();
});

