CBREAK=(typeof CBREAK=='undefined'?{}:BECOME2);
CBREAK.classes=(typeof CBREAK.classes=='undefined'?{}:CBREAK.classes);
CBREAK.classes.clients = function(elements)
{
	lastBlock = $('.home .client.stv');
	maxWidth = 322;
	minWidth = 129;
	timelapse = 400;

	$('.home .client').hover(function()
	{
		$(lastBlock).animate({width: minWidth + 'px'}, { queue: false, duration: timelapse});
		$(this).animate({width: maxWidth + 'px'}, { queue: false, duration: timelapse});
		lastBlock = this;
	});
}
$(document).ready(function(){new CBREAK.classes.clients();});
