function loadPrintPortfolio () {
	if (document.images) {
	
		showDiv('comcast');

		comcastTNOn = newImg("/img/p/print/comcastTNOn.jpg");
		comcastTNOff = newImg("/img/p/print/comcastTNOff.jpg");

		hitsTNOn = newImg("/img/p/print/hitsTNOn.jpg");
		hitsTNOff = newImg("/img/p/print/hitsTNOff.jpg");

		hdnetTNOn = newImg("/img/p/print/hdnetTNOn.jpg");
		hdnetTNOff = newImg("/img/p/print/hdnetTNOff.jpg");

		wimTNOn = newImg("/img/p/print/wimTNOn.jpg");
		wimTNOff = newImg("/img/p/print/wimTNOff.jpg");

		wimAdsTNOn = newImg("/img/p/print/wimAdsTNOn.jpg");
		wimAdsTNOff = newImg("/img/p/print/wimAdsTNOff.jpg");

		twTNOn = newImg("/img/p/print/twTNOn.jpg");
		twTNOff = newImg("/img/p/print/twTNOff.jpg");

		
	}
}

function showDiv(toShow) {
    if (!document.getElementById) {
      return null;
    }
	var divList = new Array('comcast','hits','hdnet','wim','wimAds','tw');
	
	showDivID = document.getElementById(toShow);
  	showDivID.style.display = "block";
	
	for (var i=0; i < divList.length; i++) {
		var thisDiv = divList[i];
		if (thisDiv != toShow) {
		thisDivID = document.getElementById(thisDiv);
  		thisDivID.style.display = "none";
  		}
	}
 }