$(document).ready(function(){
$("#meetCicchini .subnavigation").width($('#meetCicchini span').width()+2+"px");
$("#whatCanWeMake .subnavigation").width($('#whatCanWeMake span').width()+2+"px");
$(".navigation span").click(function(){
	$(".navigation span").not(this).parent().children().not("span").not("#active").slideUp(200);
	$(this).parent().children().not("span").not("#active").slideToggle(200);
});
$("#header").click(function(){
	window.location = '/';
});
});
