// JavaScript Document
$().ready(function(r){
	if($("#img_reset").length > 0){
		$("#img_reset").click(function(c){
			if(confirm('Are you sure you want to reset this image?')){
				$.ajax({
					url: index_ajax_url,
					type: 'POST',
					dataType: 'text',
					data: 'action=reset_photo',
					success: function(data){
							$("#storefront_img").css("background-image", 'url('+data+')');
							$("#img_controls").hide();
						}
				});
			}
			return false;
		});
	}
	
	$("#upload_btn").click(function(c){
		$("#wait_msg").show();
		$(this).css('visibility','hidden');
	});
});

var RecaptchaOptions = {
	theme : 'clean'
};