jQuery(document).ready(function() {
// Set the first Countdown
$('#countdown_dashboard').countDown({
targetOffset: {
'day': 1,
'month': 1,
'year': 0,
'hour': 1,
'min': 1,
'sec': 5
}
});
// Set the second Countdown
$('#countdown_dashboard2').countDown({
targetOffset: {
'day': 10,
'month': 1,
'year': 0,
'hour': 6,
'min': 34,
'sec': 10
}
});
});