jQuery(document).ready(function( $ ) {
// Same Height
$('.col-eq').colequalizer_mod();
// Countdown
var liftoffTime = new Date(amaucp.till_year,(amaucp.till_month-1),amaucp.till_date,amaucp.till_hour,amaucp.till_minute);
$('#defaultCountdown').countdown({
labels: ['years', 'months', 'weeks', 'Days', 'Hours', 'Minutes', 'Seconds'],
labels1: ['year', 'month', 'week', 'Day', 'Hour', 'Minute', 'Second'],
until: liftoffTime,
format: 'DHMS',
onTick: watchCountdown,
layout: '
{dl}
{hl}
{ml}
{sl}
'
});
function watchCountdown(periods) {
$('.timer-unit:nth-child(1) .text-timer').text(periods[3]);
$('.timer-unit:nth-child(2) .text-timer').text(periods[4]);
$('.timer-unit:nth-child(3) .text-timer').text(periods[5]);
$('.timer-unit:nth-child(4) .text-timer').text(periods[6]);
$('.timer-unit:nth-child(1) .text').text($('.string_dl').text());
$('.timer-unit:nth-child(2) .text').text($('.string_hl').text());
$('.timer-unit:nth-child(3) .text').text($('.string_ml').text());
$('.timer-unit:nth-child(4) .text').text($('.string_sl').text());
}
});