/*
footer links
*/
var strFooter = "";
var arrFooterLinks = [];
var daYear = new Date();
daYear = daYear.getFullYear();
arrFooterLinks[0] = ["PRIVACY POLICY","http://www.scholastic.com/privacy.htm"];
arrFooterLinks[1] = ["Terms of Use","http://www.scholastic.com/terms.htm"];
arrFooterLinks[2] = ["Scholastic.com Home","http://www2.scholastic.com/browse/index.jsp?c=y"];
arrFooterLinks[3] = ["Customer Service","http://www.scholastic.com/custsupport/"];
arrFooterLinks[4] = ["About Scholastic","http://www.scholastic.com/aboutscholastic/"];
arrFooterLinks[5] = ["Careers","http://www.scholastic.com/aboutscholastic/jobs.htm"];
arrFooterLinks[6] = ["Investor Relations","http://www.scholastic.com/investorrelations"];
arrFooterLinks[7] = ["International","http://www.scholastic.com/international/"];
arrFooterLinks[8] = ["Scholastic en Espa&ntilde;ol","http://www.scholastic.com/aboutscholastic/espanol/"];
var strCopyright = "TM &reg; &amp; &copy; " + daYear + "-1996 Scholastic Inc. All Rights Reserved.";


strFooter += '<div id="schlFooter">';
strFooter += '<ul>';
for ( var i = 0, num = arrFooterLinks.length; i < num; i++ ) {
	if ( arrFooterLinks[i][0] == "PRIVACY POLICY" ) {
		strFooter += '<li class="pp"><a href="' + arrFooterLinks[i][1] + '">' + arrFooterLinks[i][0] + '</a></li>';			
	}
	else if ( i == num - 1 ) {
		strFooter += '<li class="last"><a href="' + arrFooterLinks[i][1] + '">' + arrFooterLinks[i][0] + '</a></li>';	
	}
	else {
		strFooter += '<li><a href="' + arrFooterLinks[i][1] + '">' + arrFooterLinks[i][0] + '</a></li>';
	}
}
strFooter += '</ul>';
strFooter += '<div class="copyright">' + strCopyright + '</div>';
strFooter += '</div>';
document.writeln(strFooter);