//Cufon
Cufon.set('fontFamily', 'AG Buch Condensed BQ').replace('.brain-tip p');

//Brain tooltip
$(function(){
	$("#what-we-do-brain a").hover(function(){
		var targetdiv = $(this).attr('id');
		$('.'+targetdiv).show();
		$('.'+targetdiv).addClass('active-tip');
		
	}, 
	function() {
		$('.active-tip').hide().removeClass('active-tip');
	});
});


