var project_list, p, box ;
$(document).ready(function(){
	var countIt = 0;
	$('.openwork').each(function(){
		countIt++;
		$(this).attr('rel', countIt);
	});
	$('.openwork').click(function(e){
		e.preventDefault();
		var target = $(e.currentTarget);
		box = new Box();
		box.max = countIt;
		box.href = target.attr('href') + '?type=json';
		box.number = target.attr('rel');
		box.setProject();
	});
	$('[title=monmail]').attr('href', 'mailto:manon.bucciarelli@gmail.com').html('manon.bucciarelli@gmail.com');
	
});


