$(document).ready(function(){
	
	$(".client-logo").mouseover(function(){
		$("#" + this.id + " .bw-logo").hide();
		$("#" + this.id + " .colour-logo").show();
	});
	
	$(".client-logo").mouseout(function(){
		$("#" + this.id + " .colour-logo").hide();
		$("#" + this.id + " .bw-logo").show();
	});
	
});
