/**

Use this code to embed:

<!-- cbc countdown image -->
<script language="JavaScript" type="text/javascript" src="http://www.audubon.org/bird/cbc/countdown.js"></script>

**/
// Take script down after december
// Script to see what current day is and print corresponding image
var cbcday      = new Date();
var cbcToday    = cbcday.getDate(); // 1-31
var cbcImageNum = '';

// make sure an image is shown after the 14 days are up
if(cbcToday==30)
 cbcImageNum=14;
else if(cbcToday>=14)
 cbcImageNum='';
else
 cbcImageNum = 14 - cbcToday;  // get correct image by subtracting start date by today

document.write('<a href=\"http://www.audubon.org/bird/cbc\" class=\"link\"><img src=\"http://www.audubon.org/images/HP/cbccountdown.jpg\" alt=\"Click here for CBC info!\" width=\"150\" height=\"90\" border=\"0\"></a>');
// .................................. //