jQuery(document).ready(function($) {

		
		$('#start').click(function () {
		$('#response').html('<img src="http://testuj.net/alexa/load.gif" />');
		$("#response").fadeIn();
			
			$.ajax({
			type: "POST",
			url: "query.php",
			data: 	"domains=" + document.getElementById("domains").value,
			success: function(html){
				$("#response").fadeOut('fast');
				$("#response").html(html);
				$("#response").fadeIn();
				
			}
		});
			
		});
		
		
		
		
		
	
	

			
			});
