﻿//Script to replace x's in product-info table with custom checkmark.
$(document).ready(function(){

   	$(".avtorit-TableEvenCol-product-info, .avtorit-TableOddCol-product-info, .avtorit-TableLastCol-product-info").each(function() {
   	
   	if($(this).text().indexOf('x') >= 0) { //if td contains an x
   		$(this).addClass("checked"); //give it the class "checked", which adds checkmark as a background image
   		$(this).html(' '); // delete the x
   		}
   	});
});

