// JavaScript Document
$(document).ready(function()
{
    $(".citypromotion").find("ul[id='promotion']").each(function()
    {
        $(this).find("li").each(function(i)
        {
            if (i == 0 || i == 1)
            {
                $(this).css({
                    "border-top": "0px none"
                }).find("#price").css({
                    "color": "#f10000"
                });
            }
        });
    });
});
