I'd appreciate you not linking to images from my site.
Aslo, if the javascript isn't working in your footer you may need to include it within the forumhome template, like so:
Code:
<script language="Javascript" type="text/javascript" src="countdown/js/jquery-1.4.1.js"></script>
<script language="Javascript" type="text/javascript" src="countdown/js/jquery.lwtCountdown-1.0.js"></script>
<script language="Javascript" type="text/javascript" src="countdown/js/misc.js"></script>
<link rel="Stylesheet" type="text/css" href="countdown/style/main.css"></link>
<script type="text/javascript">
var jq=$.noConflict();
jq(document).ready(function() {
jq('#countdown3').countDown({
targetDate: {
'day': 10,
'month': 10,
'year': 2010,
'hour': 10,
'min': 10,
'sec': 10,
}
});
});
</script>