$(document).ready(function(){
  $("a[rel^='prettyPhoto']").prettyPhoto({allowresize: false, showTitle: false, autoplay: false, default_width: 700});
  $('.announce-toggle').click(function(){
    $(this).toggleClass('up');
    $('#'+$(this).attr('rel')).toggle('fast');
    return false;
  });
  
});