// JavaScript Document

$(document).ready(function() {
		
		$(".marcadorLista").click(function(){
										   
			var idref = $(this).attr('id');
			var ulref = '#ul' + idref;
			
			if ($(ulref).is(':visible')){
				$(ulref).hide();
				$(this).html('&#9658;');
			}else{
				$(ulref).show();
				$(this).html('&#9660;');
			}

		});

});
		
		
function addTag(item){

	if ($('#tags').val().length == 0) 
		$('#tags').val($(item).html());
	else
		$('#tags').val($('#tags').val() + ', ' + $(item).html());
}
