thinkLinksA = 0;

function stopAndThink() {
	
	thinkLinksA++;
	
	try {
		
		$('.deleteAll').each(function(){
			
			$(this).click(function(e){
				var theResponse = confirm("Are you sure you wish to delete all posts by this user?");
				if (!theResponse){
					return false;
				} else {
				}
			})
			
		});
		
		/*
			document.getElementsByClassName('deleteAll').each(function(me){
				me.onclick = function(e){
					var theResponse = confirm("Are you sure you wish to delete all posts by this user?");
					if (!theResponse){
						return false;
					} else {
					}
				}
			});
		*/
		
		clearInterval(thinkLinksI);
	} catch (e) {
	}
	
	if (thinkLinksA >= 10) {
		clearInterval(thinkLinksI);
	}
}

thinkLinksI = setInterval('stopAndThink()', 1000);
