﻿// JScript File

function customJS_OnLoad()
{
    changeYourPriceColor();
}
function changeYourPriceColor() {
    try {
        var span = document.getElementById("UFeaturedItem_grdFItem_ctl00_lblPriceDesc");
        var span1 = document.getElementById("UFeaturedItem_grdFItem_ctl01_lblPriceDesc");
        var span2 = document.getElementById("UFeaturedItem_grdFItem_ctl02_lblPriceDesc");
        span.style.color = "white";
        span1.style.color = "white";
        span2.style.color = "white";
    }
    catch (e) { }
}
