$(document).ready(function()
{ 
    //*************************************************************************
    //Created By:   Jeff Richmond
    //Created Date: 2008.08.04
    //Section Name: Show Star Ratings
    //Description:  Replaces a numeric rating with a 5 star representation
    //*************************************************************************
    $('.ShowRating').each( function()
    {
        var intRating = $(this).find('span').text();
        var dblPercent = (intRating / 5) * 100;
        
        $(this)
            .removeClass('ShowRating')
            .addClass('Rating')
            .empty()
            
            .append('<span>')
            .attr('title', intRating + ' of 5 stars')
            .find('span')
            .width(dblPercent + '%')
            .text(intRating + ' of 5 stars');
        
        if (intRating <= 1)
        {
            $(this).addClass('LowRating');
        }
    });//End Star Ratings
});