$(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(200);
        }, function () {
            $('.dropdown:eq(0)', this).hide(200);
        });
    });
  
  // hides the slickbox as soon as the DOM is ready
  $('.more-txt').hide();

  // hides the slickbox on clicking the noted link  
  $('.more').click(function(){
    $(this).siblings('.more-txt').slideToggle('slow');
    return false;
  });
  
  
});

