jQuery(document).ready(function(){jQuery("#contentWrapper #content table").each(function(){var $table=jQuery(this);if($table.attr("id")!="PlanDetails"){$table.find("tr").each(function(){var $row=jQuery(this);var even=false;$row.find("th:first").addClass("first");$row.find("td:first").addClass("first");$row.find("td").each(function(){var $cell=jQuery(this);var colspan=$cell.attr("colspan");if(even){$cell.addClass("even");}if(colspan!=null){if(colspan%2!=0){even=!even;}}else{even=!even;}});$row.find("th").each(function(){var $cell=jQuery(this);var colspan=$cell.attr("colspan");if(even){$cell.addClass("even");}if(colspan!=null){if(colspan%2!=0){even=!even;}}else{even=!even;}});});}});jQuery("a.popup").fancybox();jQuery.extend(jQuery.expr[":"],{icontains:function(elem,i,match,array){return(elem.textContent||elem.innerText||"").toLowerCase().indexOf((match[3]||"").toLowerCase())>=0;}});jQuery("ul#quicklinks li").remove(":icontains('none')");});
