/* Add class to current temp to add thermometer image */

if (ctemp < 1) {
	$("ul.weathercurrent li").addClass("thermometer-1");
}
else if (ctemp < 11 && ctemp > 0) {
	$("ul.weathercurrent li").addClass("thermometer-2");
}
else if (ctemp < 18 && ctemp > 10) {
	$("ul.weathercurrent li").addClass("thermometer-3");
}
else if (ctemp < 24 && ctemp > 17) {
	$("ul.weathercurrent li").addClass("thermometer-4");
}
else if (ctemp < 30 && ctemp > 23) {
	$("ul.weathercurrent li").addClass("thermometer-5");
}
else if (ctemp < 35 && ctemp > 29) {
	$("ul.weathercurrent li").addClass("thermometer-6");
}
else if (ctemp < 40 && ctemp > 34) {
	$("ul.weathercurrent li").addClass("thermometer-7");
}
else if (ctemp < 50 && ctemp > 39) {
	$("ul.weathercurrent li").addClass("thermometer-8");
}
else if (ctemp > 49) {
	$("ul.weathercurrent li").addClass("thermometer-9");
}