$(function() {
    $("div.dealOfWeek #prdDiv").each(function () {
        var thisDate = $(this).find(".productTimer").text();
//        $(this).children(".timerCategory").countdown({ until: new Date(thisDate), format: 'DHMS', compact: true, layout: '{dn} Days {hn} Hrs {mn} Mins {sn} Secs Left', expiryText: "Item Expired", alwaysExpire: true });
        $(this).children(".timerCategory").countdown({ until: new Date(thisDate), format: 'DHMS', compact: true, layout: '{dn} Days {hn} : {mn} : {sn}', expiryText: "Item Expired", alwaysExpire: true });
  });  
});


