$(function() {
	$('.counter').each(function(){
		var data = $(this).metadata();
		if (data.ts) {
			var openUntil = new Date();
			openUntil = new Date(data.ts);
			$(this).countdown({until: openUntil, expiryText: '0',timezone: +12, format: 'DHMS'});
		}
	});
	$(".product-images ul, .product-images-mini ul").cycle({pause:true});
});
