/* IVI, 24.01.2012 */
jQuery(function($){

  // show rollover image for footer box:
  $('.box').hover(function(event) {
    $(this).find('.rollover').fadeIn(400);
  }, function (event) {
    // only fade out if not active:
    if (!$(this).hasClass('active')) 
      $(this).find('.rollover').fadeOut(600);
  });

});

