$(function(){
    $('#example').flash(
        { src: 'example.swf',
          width: 720,
          height: 480 },
        { version: 8 }
    );
    $('a[href^="http://"]').attr('target', '_blank');
  $("a[href$='pdf']").attr('target', '_blank');
  $("a[rel^='prettyPhoto'], .rtePhoto").prettyPhoto();
  
   $('.dropdown').each(function () {
        $(this).parent().eq(0).hover(function () {
            $('.dropdown:eq(0)', this).show();
        }, function () {
            $('.dropdown:eq(0)', this).hide();
        });
    });
  
});

