$(document).ready(function ()
{
  $('#r-init').find('a').each(
    function ()
    {
      var a = $(this);
      a.find('img').each(
        function ()
        {
          var img = this;
          if (wcm_has_len(this.src) === true)
          {
            a.bind('mouseover focus', function () { img.src = img.src.replace(/_0\.png$/, '_1.png'); })
             .bind('mouseout blur', function () { img.src = img.src.replace(/_1\.png$/, '_0.png'); })
          }
        });
    });

  $('#bc-menu-content').css({'minHeight': $('#bc-content').height() + 10});
});

$(window).load(function ()
{
  $('#bc-menu-content').css({'minHeight': $('#bc-content').height() + 10});
});

