fixing merge conflict where Laury originally had a red slash through the sale price in list
view theme file. re adding the js for that section
$('.glm-member-list-record').each(function(){
if( $(this).find('.slash-price').length != 0 ){
$(this).find('.msrp-value').addClass('sale');
+ $(this).find('.msrp-value').css('color','black').css('text-decoration','none').removeClass('glm-columns').wrap('<div class="mrsp-sale-wrapper" style="text-decoration: line-through; color: red;"></div>');
// $(this).find( $('.sale-price-value') ).insertAfter( $(this).find('.sale') ).css('display', 'block').css('float', 'right').addClass('sale-text');
}
});