jQuery(document).ready(function() {
	var hideForm	= true;
	jQuery(".catalog-top input[type='radio']").each(function() {
		if (jQuery(this).attr('checked') == true && hideForm == true) {
			hideForm	= false;
		}
	});
	if (hideForm) {
		jQuery('.catalog-form').hide();
		jQuery(".catalog-top input[type='radio']").click(function() {
			jQuery('.catalog-form').show();
		});
	}
});