/* This is a customised file for the countdown. */

$(function () {
	var liveDay = new Date();
	liveDay = new Date(liveDay.getFullYear(), 8,  9);

$('#noSeconds').countdown({until: liveDay, format: 'DHMS',
    layout: '<ul>' +
    '{d<}<li>{dnn} </li>{d>}{h<}<li>{hnn} </li>{h>}' +
    '{m<}<li>{mnn} </li>{m>} {s<}<li class="sec">{snn} </li>{s>}</ul>'});
});
