$(document).ready(function() {

	$("#AjaxLoader").hide(); //hide the ajax loader
    $("#whoisresult").hide();

    $("#ajaxButton").click( function() {
            $("#whoisresult").hide(); //hide the ajax loader 
            var dom = $('input:text[name=domain]').val();
            var dome = $("#domext :selected").val()
			$("#AjaxLoader").show(); //show the ajax loader
           $.ajax({
				type: "POST",
				url: "index.php?module=whois",
				data: { domain:dom,domext:dome,action: "whois" },
				success: function(theResponse) {
                       $("#whoisresult").show();
                       $("#whoisresult").html(theResponse).fadeTo("slow", 1);
						$("#AjaxLoader").hide(); //hide the ajax loader again


				}
			});
       return false;

	}
    );



});
