$(document).ready(function() {       
  $("#i_ac").hover(function(){
    $(this).addClass("over")
  },function(){
    $(this).removeClass("over");
  });

  $("#i_bo").hover(function(){
    $(this).addClass("over")
  },function(){
    $(this).removeClass("over");
  });

  $("#i_ce").hover(function(){
    $(this).addClass("over")
  },function(){
    $(this).removeClass("over");
  });



  jQuery.each(jQuery.browser, function(i, val) {
   if(i=="msie" && jQuery.browser.version.substr(0,3)=="8.0")
      $('#minirecap').addClass('ie8');      
 });
});

/*

*/