$(document).ready(function(){
	$('.caption').textgrad({maxGroup:1,type:'_',begin:'48AC4B',end:'AFCE2E'});
	$("#cart").fancybox({
		'width'				: 735,
		'height'			: 400,
		'padding'			: 30,
        'autoScale'     	: false,
		'autoDimensions'	: false,
        'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'overlayColor'		: '#000',
		'type'				: 'iframe'
	});
	
	$("a#login_top").click(function(){
		$("#login_form:not(:animated)").toggle("slow");
		return false;
	});
	
	$("#login_form_cancel").click(function(){
		$("#login_form:not(:animated)").hide("slow");
		return false;
	});
	
	//таймеры
	var cur_date = new Date();
	$(".countdown").each(function(){
		var target_date = new Date($(this).attr('value')); 
		if (cur_date >= target_date) 
			action_expire($(this));
		else if(!isNaN(target_date)) {
			$(this).countdown({
				until: target_date, 
				format: 'DHMS', 
				compact: true,  
				layout: 'До конца акции осталось: <div class="digits"> <b>{dn}</b>д <b>{hnn}</b>ч <b>{mnn}</b>м <b>{snn}</b>с</div> {desc}', 
				onExpiry: action_expire($(this))
			}); 
		}
	});
	
	//грамоты
	$("a.gramoti_gal").fancybox();
	
	//аудиоотзывы
	$(".audio").jmp3();
});

//для таймера.
function action_expire(el) {
	el.text('Акция окончена!');
}

