// Cateogry Page Scripts

$(document).ready(function() {
    
    // Fix the price formatted by store: 
    
    var ourPrice = '';
    var newPrice = '';
    $('.productPrice').each(function() {
        ourPrice = $(this).text();
        newPrice = ourPrice.replace(',', '');
        fixedPrice = parseFloat(newPrice);
        $(this).text('$' + fixedPrice.toFixed(2))
    });
    
    $('.productsCategory div.item:nth-child(3n+3)').css('border-right','0px');
    $('.productsCategory div.item:nth-child(3n+3)').after('<hr />');
    
});