$(document).ready(function(){
	
	if(jQuery.browser.msie && parseInt(jQuery.browser.version)==6){
		$("#nurse_state_records").html("<img src=\"http://www.propublica.org/projects/nurses/nurses-records-green-map.gif\" alt=\"States highlighted in green  provide both free online license verification and free disciplinary documents online.\"  width=\"425\" />")
	}
	
	
	$("tr").each(function(){
		
		var tdcount = 0
		$(this).find("td").each(function(){
			if(tdcount==2 || tdcount==3 || tdcount==4){
				if($(this).text()=="Yes")
					$(this).css("color", "#090");
				else if($(this).text()=="No")
					$(this).css("color", "red");
			}
			tdcount += 1
		})
		
	})
	
})
