$(function () {
var austDay = new Date();
austDay = new Date(austDay.getFullYear() + 1, 1 - 1, 26); - а тут просто играетесь цифрами
$('#defaultCountdown').countdown({until: austDay}); - id дива к которому делаете подключение
$('#year').text(austDay.getFullYear()); - это можете смело удалять.
});
$( "#cart > .heading a" ).on({
click: function() {
url = $('base').attr('href') + 'index.php?route=checkout/cart';
location = url;
},
mouseover: function() {
$('#cart')
.addClass('active')
.load('index.php?route=module/cart #cart > *');
},
mouseleave: function(){
$('#cart').removeClass('active');
}
});
var smsField = $('input[name = "smscode"]');
if (smsField.length) {
smsField.focus();
}