/**
 * jquery.scrollable 0.13. Put your HTML scroll.
 * 
 * http://flowplayer.org/tools/scrollable.html
 *
 * Copyright (c) 2008 Tero Piirainen (support@flowplayer.org)
 *
 * Released under the MIT License:
 * http://www.opensource.org/licenses/mit-license.php
 *
 * >> Basically you can do anything you want but leave this header as is <<
 *
 * Since  : 0.10 - 03/01/2008
 * Version: 0.13 - Wed Nov 05 2008 12:04:04 GMT-0000 (GMT+00:00)
 */
(function($) {
		
  $(function () {
  $('.bn_hover a')
    // create our new span.hover and loop through anchor:
    .append('<span class="hover bncolor"/>').each(function () {

      // cache a copy of the span, at the same time changing the opacity
      // to zero in preparation of the page being loaded
      var $span = $('> span.hover', this).css('opacity', 0);

      // when the user hovers in and out of the anchor
      $(this).hover(function () {
        // on hover

        // stop any animations currently running, and fade to opacity: 1
        $span.stop().fadeTo(200, 1);
      }, function () {
        // off hover

        // again, stop any animations currently running, and fade out
        $span.stop().fadeTo(200, 0);
      });
    });
});


})(jQuery);




