var $whois_more = 0;

$(document).ready(function() {
	
	$('#whois_more_info').hide();
	
	$('#whois_domain').click(function () { 
		$('#whois_domain').attr('value', '');								
    });
	
});

function whois_info () {
	
	if ($whois_more == 0) {
		show_whois_info();
	} else {
		hide_whois_info();
	}
	
}

function hide_whois_info () {
	
	$whois_more = 0;
	$('#whois_more_img').attr('src', '/images/icons/expand.gif');
	$('#whois_more_info').slideUp('slow');
	
}

function show_whois_info () {
	
	$whois_more = 1;
	$('#whois_more_img').attr('src', '/images/icons/collapse.gif');
	$('#whois_more_info').slideDown('slow');
	
}

