jQuery(function($) {
  // if not using ie6
  if (! isIE6()) {
    $('.column').mouseenter(function(event) {
      var $col = $(this);

      var $sc = $col.find('.small-circle');
      var $lc = $col.find('.large-circle');

      if ($.browser.msie) {
        $sc.show();
        $lc.show();
      } else {
        $sc.fadeIn('fast');
        $lc.fadeIn('fast');
      }
    });
    
    $('.column').mouseleave(function(event) {
      var $col = $(this);

      var $sc = $col.find('.small-circle');
      var $lc = $col.find('.large-circle')

      if ($.browser.msie) {
        $sc.hide();
        $lc.hide();
      } else {
        $sc.fadeOut('fast');
        $lc.fadeOut('fast');
      }
    });
  }
});
