$(document).ready(function() {
	$(".bookmark a").click(function(e){
		var url = $(this).attr('href');
		e.preventDefault();
		$.get(url);
		
		if ($(this).parent().hasClass('add'))
		{
			$(this).parent().addClass('no-display');
			$(this).parent().parent().find('.del').removeClass('no-display');
		}
		else
		{
//			var pathname = window.location.pathname;
			
			$(this).parent().addClass('no-display');
			$(this).parent().parent().find('.add').removeClass('no-display');
			/*
			alert(pathname);
			if(pathname == 'index.php?d=merkzettel')
			{
				$(this).parent().parent().parent().parent().hide();
			}*/
		}
	});
});
