
$(document).ready(function(){

$(".row2 img").hover( function() {
	this.src = this.src.replace("_bw","_col"); },
	function() {
		this.src = this.src.replace("_col","_bw"); 
	});
	});
