			$(document).ready(function() {
				$("div.programTables div.programTablesCont + div.programTablesCont table tbody tr td").hover(function() {
						$(this).addClass("hover");
					}, function() {
						$(this).removeClass("hover");
				});
				$("div.programTablesCont table tbody tr td.Spacer img").each(function() {
					if ($(this).attr("height") == "11") {
						var $a = $(this).parent().next().find("a");
						var show = $a.text();
						if (show.length > 11) {
							// if (show.charAt(10) != " ") {
								show = show.slice(0, 10);
								$a.html(show + "&hellip;").end();
							// }
						}
					}
				});
			});