function handleSwapClientScreen()
{
	$('#client-content aside a').on('click', function(e){
		e.preventDefault();
		$('#client-content').hide();
		$('#client-gallery').fadeIn('slow');
	});
}



$(function() {
 
handleSwapClientScreen();

$("img").error(function () { 
	$(this).hide();
	// or $(this).css({visibility:"hidden"}); 
});

});
