// Save time and money
// Hide & Show Javascript

$(document).ready(function() {
  var lastBigImage = $('span#save_time_money_big_image_1');
  var lastBackground = $('li.list_item_1');
  $('#save_time_money_list li').hover(function() {
    lastBackground.removeClass('list_background_hover');
    lastBigImage.hide();
    (lastBackground = $(this)).addClass('list_background_hover');
    (lastBigImage = $('span.big_image', this)).show();
  }, function() {
    return false;
  });
});

