/**
 * @author tlawton
 */
var HTLookup = new Array();
var HTCurrentActive = 0;
var bannerIdx;

$(document).ready(function() {
 	
$(".pt_htext").each(function() {
	
	$(this).hide();
	$("#ht_0").show();
	
});	
	
	
});

 
function ShowBanner(bannerId)
{
	if(bannerId == HTCurrentActive)
	{
		return;
	}
	bannerIdx = bannerId;
	
	$("#ht_"+HTCurrentActive).fadeOut("slow", function(){$("#ht_"+bannerIdx).fadeIn("slow");HTCurrentActive = bannerIdx;});
	return;
}

function ResetAllBanners()
{
	ShowBanner(0);
	return;
}

