$(document).ready(function() {
	$("table.screenshots a").each(function() {
		$(this).mouseover(function() {
			$("img", this).each(function() {
				this.src = this.src.replace("-grey\.png", ".png");
			});
		});

		$(this).mouseout(function() {
			$("img", this).each(function() {
				this.src = this.src.replace("\.png", "-grey.png");
			});
		});
	});
});


