Actually, I figured this out by looking up the creator of the Java Script code that is used throughout the book. Instead of using:
Code:
<!--[if lt IE 7]>
<link rel='stylesheet' type='text/css' href='multi-column-ie.css' />
<script src="/ie7/ie7-standard-p.js" type="text/javascript"></script>
<![endif]-->
I now use:
Code:
<!--[if lt IE 7]>
<script src="http://ie7-js.googlecode.com/svn/version/2.0(beta3)/IE7.js" type="text/javascript"></script>
<![endif]-->
It works perfectly but I am concerned about linking to a site that could either go down or move which would break everything. Hopefully, Dean Edwards will provide another opportunity to download his zip folder...