var sp_property_list = function(){};

sp_property_list.filter_list=function(sel_field){
	if($(sel_field).val()==''){
		$('div#sp_property_list h3').show();
		$('div#sp_property_list ul').show();
	}else{
		$('div#sp_property_list h3').hide();
		$('div#sp_property_list ul').hide();
		$('div#sp_property_list h3#sp_property_list_head_'+$(sel_field).val()).show();
		$('div#sp_property_list ul#sp_property_list_list_'+$(sel_field).val()).show();
	}
}

$(function(){
    $('select#field_sp_property_list_category').show();
});

$('a#sp_property_list_upload').click(function(){
	$(this).hide();
});