$(document).ready(function(){
	$('#twitter_cuss_form').submit(function() {
		post_form();
		return false;
	});
	
	$("#go_button").click(function(){
		post_form();
		return false;
	});

});

function post_form() {
//	alert('due to a high number of requests, this tool is temporarily busted.  Sucky, I know. Check back later.')
//	return false;
	if ($("#twitter_username").val().length > 0) {
		
		$('#results').load('/quizzes/twitter_cuss/'+ $("#twitter_username").val());

	}
}


function random_int() {
	return Math.floor(Math.random()*100000);
}