function iconGenerator(category) 

{
    //document.write("<!-- category is"+ category +" -->");
    if (category.match(/Volunteer/i))
    {
        document.write("<div class=\"entry comment\">");
    }
    else
    if (category.match(/ticker/i))
    {
        document.write("<div class=\"entry media\">");
    }
    else {
        document.write("<div class=\"entry note\">");
    }
    return;
}
