$('document').ready(function(){
	if($('.lista_cat2_ml').length > 0){
		$('.lista_cat2_ml li td a').click(function(){
			//$(this).hide();
			$(this).parent().parent().parent().parent().parent().parent().hide();
			var depotesAnt = $(this).next().val();
			var depotesTod = $('#categoria').val();
			depotesTod = depotesTod.replace(depotesAnt,"");
			$('#categoria').val(depotesTod);
			return false;
		})
	}
	if($('#metodo_pago1_dv').length > 0){
		var $creditDV = $('#credit_c_display');
		if($('#credit').is(':checked')) $creditDV.show();
		else $creditDV.hide();
		$('#metodo_pago1_dv input').click(function(){
			var $radio = $(this).val();
			$creditDV.slideUp('medium');
			if($radio == 'Credit Card') $creditDV.slideDown('medium')
		});
	}
	
})
