function IEhovers() {
	for (i=0; i<$('one').childNodes.length; i++) {
		if ($('one').childNodes[i].className == "progchboxlat") {
			$('one').childNodes[i].childNodes[0].onclick=function() {return false;}
			var targ = $('one').childNodes[i].childNodes[0].href;
			targ=targ.replace(".html", "");
			targ=targ.replace("http://www.dishpronto.com/programming/dishlatino/","");
			targ=targ.replace("/","");
			$('one').childNodes[i].targi = targ;
			$('one').childNodes[i].onclick = shch;
			if (document.all&&document.getElementById) {
				$('one').childNodes[i].onmouseover=function() {this.className+=" over";}
				$('one').childNodes[i].onmouseout=function() {this.className=this.className.replace(" over", "");}
			}
		}
	}
}

function shch() {
	if (window.targi) {
		var content = window.targi
		window.targi = null
	} else {
		var content = this.targi
	}

	if (content=="basic") {
		pknm = "DISH Latino Basic";
	} else if (content=="dos") {
		pknm = "DISH Latino Dos";
	} else if (content=="max") {
		pknm = "DISH Latino Max";
	}

	var url = '/pulldishchannels.latino.asp?pkg='+content;
	<!-- var url = '/programming/dishlatino'+content+'.str.html'; -->

	$('packagename').setHTML(pknm);

	new Ajax(url, {method:'get',onComplete: function(){ urchinTracker(url); $('chcontent').innerHTML = $('chcontent').innerHTML.replace(/class="channellink"/g,'target="_new" class="channellink"'); },update:'chcontent'}).request();
	
	if ($('chcontent').style.display != "block") {
		$('chcontent').style.display = "block";
		$('chcontent').style.height = 360+"px";
		$('chcontent').style.border = "1px #999 solid";
		$('packagename').style.padding = 10+"px";
	}
}

window.onload=function() {startList();IEhovers();}