$(document).ready(function() {	
	$('a.bookmark').click(function() {		
		$(this).next('div').show();
		return false;
	});
	
	$('a.bookmark').focus(function() {		
		$(this).next('p.touches').load('/touches/add/' + this.id.replace('bookmark', ''));
	});
});
