jQuery.noConflict();

jQuery(document).ready(function(){

	jQuery('#choose-domain').click(function() {

		jQuery.post("/netcat/select_domains.php", {sub : jQuery("#sub").val()}, function(data){
		 jQuery('#loadingWrapper').html(data);

		if (jQuery('#choose-domain-box').hasClass('hide')) {
			jQuery('#choose-domain-box').addClass('block');
			jQuery('#choose-domain-box').removeClass('hide');
		} else
		{
			jQuery('#choose-domain-box').removeClass('block');
			jQuery('#choose-domain-box').addClass('hide');
		};

		});

	});
});
