// JavaScript Document
$(function() {
 $('#sort3 li a.selected').live('click', function() {
 //check if the options are visible
 if( $('#sort3 li a.option:visible').length > 1) {
 //hide the options if currently displaying
 $('#sort3 li a.option:not(.selected)').hide();
 } else {
 //show the options if hidden
 $('#sort3 li a.option:not(.selected)').show();
 }
 return false;
 });
 //check for selecting a new option
 $('#sort3 li a.option:not(.selected)').live('click', function() {
 //change over the selected class
 $('#sort3 li a').removeClass('selected');
 //apply this to the new selection
 $(this).addClass('selected');
 //update the select option
 $("input[name='departamento']").val( $(this).attr('title') );
 //slide up the selected option
 $('#sort3 li a.option:not(.selected)').hide();
 return false;
 });
 });
