function addStyleToFeatureProduct () {
	var obj = document.getElementById ('ja-feature-products');
	if (!obj)
	{
		return;
	}
	var objtable = obj.getElementsByTagName ('table');
	if (objtable && objtable.length > 0)
	{
		objtable = objtable[0];
		var rows = objtable.rows;
		for (i=0; i<rows.length; i++)
		{
			if (rows[i].cells.length > 0)
			{
				for (j=0; j<rows[i].cells.length-1; j++)
				{
					rows[i].cells[j].className += " ja-rightseparator";
				}
			}
		}
	}
}
	jaAddEvent (window, 'load', addStyleToFeatureProduct);