$(function() {

	$('a[rel*=details]').click(function(e) {
		e.preventDefault();
		var title=$(this).next('div.details').find('.title').hide().text();
		var details=$(this).next('div.details').clone();
		var box=new Boxy(details,{
			title: title,
			modal: true,
			closeText: 'sulje'
		});
/*		$('a[rel=image]', details).unbind('click').bind('click', function(e) {
			box.setContent('<img src="'+$(this).attr('href')+'" alt=""/>');
			e.preventDefault();
		});*/
	});
	
	$('.obfuscate').each(function(i) {
		$(this).text($('.name', $(this)).text()+'@'+$('.suffix', $(this)).text());
	});

});

