/* Culip JavaScript document : # IE6 compatibility script 2010-12-25
   Copyright (C) Nathan Oyama (nate@culip.nate)
   Verbatim copying and distribution of this entire article is 
   permitted in any medium, provided this notice is preserved.*/

/* IE6 compatibility script in support of hoverring on non-anchor elements */

$( document ).ready( function() {
    $( '.hoverable' ).hover(
      function() {
      $( this ).addClass( 'hovered' );
      }, function() {
      $( this ).removeClass( 'hovered' );
      }
      );
    });


