$(document).ready(function() {
	$('#reloadImage').click(function(){
		d = new Date();
		$('#reloadImage img').attr("src","/services/captcha/?"+d.getTime());
	});
	//Счетчик ввода символов
	$('.countdown').simplecountdown();
	
	//Просмотр QR
	$('.qr').each(function(){
		var self = this;
		$(this).click(function(){
			var divEntry = $(this).parent().find('.qrView').html();
			if(!divEntry){
				$(this).parent().find('.qrView').load('/services/qr/?'+$(self).attr('id'));
			} else {
				$(this).parent().find('.qrView').html('');
			}
		});
	});
	
	$('.adsType').corner('5px');
	$('#content h4').corner('5px');
	$('#content .entry').corner('5px');
	$('#content .qrArea').corner('5px');
	$('#content .ad').corner('5px');
	$('#content .errMes').corner('5px');
	$('#content .infMsg').corner('5px');
	
	$("#siteSale").focus(
		 function()
		{
			  if(this.value == this.defaultValue)
			  {
				  this.select();
			  }
		}
	);
	
});
