jQuery().ready(function(){
       jQuery('#media-widget').accordion({
               autoheight: false,
                alwaysOpen: true,
               header: '.toggle'
       });
       jQuery('#photos a').attr('target','_BLANK');
       jQuery('#photos a img').css('opacity',0.8);
       jQuery('#photos a img').hover(
              function () {
                      jQuery(this).animate({ opacity: 1.0 }, 500);
              },
              function () {
                      jQuery(this).animate({ opacity: 0.8 }, 500);
              }
      );
});