$(function(){

	$('.logos').mobilyblocks({
		trigger: 'hover',
		direction: 'counter',
		duration:550,
		zIndex:50,
		widthMultiplier:.99
	});
	
	var intext = $('#intext');
	
	$('div.logos').hover(function() {
		intext.stop(true, true).fadeOut();
	}, function() {
		intext.stop(true, true).fadeIn();
	});
	
});

