    /**
     * @file
     *    Sample javascript/jQuery code for "jQuery for Designers & Themers".
     *
     * @author
     *    Bevan Rudge: @BevanR, Drupal.geek.nz
     */

    /**
     * Hacks the user-register form at user/register.
     *
     * Drupal will call this on page-ready, and every time HTML gets added to the DOM.
     * It's useful to think of DOM as "live manipulable HTML which does not persist
     * between a page refresh".
     *
     * @param context: The new DOM, so that event callbacks can be binded to it.
     *    Note the context parameter is used when binding an event to an element, but
     *    not when manipulating (adding/removing changing) HTML/DOM.  This is a rule-
     *    of-thumb guide only and for proper use you need a jQuery/AJAX developer, and
     *    is out of the scope of this code and sample.
     */
    Drupal.behaviors.opgHackUserRegister = {};
    Drupal.behaviors.opgHackUserRegister.attach = function(context) {
      var $ = jQuery;

 
      $(".fade", context).hover(function() {
      	//$(this).stop().animate({opacity: "1"}, 'fast');
        
      },
      function() {
        //$(this).stop().animate({opacity: "0.96"}, 'fast');
      });        
      
      $(".fadeTeaser", context).hover(function() {
        	//$(this).stop().animate({opacity: "1"}, 'fast');
          
        },
        function() {
          //$(this).stop().animate({opacity: "0.5"}, 'fast');
        });       
      
    };


    ;

