
(function($) { // closure and $ portability

  /* Site-Specific plug-ins */
  
  $.fn.only = $.fn.each; // makes the code below read better :)
   
  $(document).ready( function() {
    
  /*  -------- document ready: all pages -------- */

  $('a.cv').windowopen({ scrollbars: true, width: 400, height: 480 });

  /*  -------- document ready: home page -------- */
  
    $('body.home').only( function() {
      
      MM_preloadImages(wp_template_url + 'media/e_o.gif',wp_template_url + 'media/3_join_o.gif', wp_template_url + 'media/4_visit_o.gif');

      var am =  $('#artistsmenu');
      
      $('#globalnavartists a').click( function() {
        
        if (am.is(":visible")) {
          am.hide();
        } else {
          am.show();
        }
        
      });
      
      
    });


    /*  -------- document ready: join page -------- */

    
    

  });


  $(window).load( function() {

  /*  -------- window load: all pages -------- */
    
    
    $('body.cv').only( function() {
      
      window.print();
    
    });
    
    
  });
    
})(jQuery);
