if (Drupal.jsEnabled) {  
  $(document).ready(function() {  
    //$('.form-checkboxes').prepend('<div class="form-item"><strong>Mostrar:</strong></div><div class="form-item"><label class="option"><input id="edit-opciones-product" class="form-checkbox" type="checkbox" style="display:none" />Todo</label></div>');
  	$('.form-radios').prepend('<div class="form-item"><strong>Mostrar:</strong></div>');
	$('.form-radios .form-item label').hover(function(){
		$(this).addClass('hover hand');
	},function(){
		$(this).removeClass('hover hand');
	});
	
	
	$('#busqueda-form .form-radios .form-item input').each(function() {
		//alert($(this).attr('checked'));
		if($(this).attr('checked')) {			
			$(this).parent('label').addClass('active');
		}
	});	
	
	$('.form-radios .form-item label').click(function(){
		// Deseleccionamos todos los checkboxes
		//$(this).find('#busqueda-form .form-radios .form-item input').attr('checked','');
		
		$(this).find('input').attr('checked','checked');
		$(this).parents('#busqueda-form').submit();
	});
 });
} 

