$(document).ready(function() {
	// CLIENTS FADE
	$('.client').mouseover(
		function() {
		  var $this = $(this);
		  $this.fadeOut('fast', function(){ $this.addClass('top').fadeIn('fast'); });
			return false;
		}
	).mouseout(
		function() {
		  var $this = $(this);
		  $this.fadeOut('fast', function(){ $this.removeClass('top').fadeIn('fast'); });
			return false;
		}
	);
});

