// Coded by Mads Donkin - Take-A-Web -> from boxgrid
$(document).ready(function(){
	$('.logoPortBox').hover(function(){
		$(this).stop().animate({opacity:'1'},{queue:false,duration:300});
	}, function() {
		$(this).stop().animate({opacity:'0.5'},{queue:false,duration:700});
	});


});



