﻿function setProductRollovers()
{
    $('.product-container').css('cursor', 'pointer');
    $('.product-container').hover(function(e) {
        $(this).children('.popup').css('cursor', 'text');
        $(this).removeClass('product-container').addClass('product-container-active');
        $(this).children('.popup').show();
    }, function(e) {
        $(this).removeClass('product-container-active').addClass('product-container');
        $(this).children('.popup').css('display', 'none');
    });
}

  function SectionCallOutHover()
    {
        $('.section-callout-box').css('cursor', 'pointer');
        $('.section-callout-box').hover(function(e){
            $(this).css('background-color', '#d4d4d4');
        }, function(e){
            $(this).css('background-color', '#E9E9E9');
        });
    }
