// ****************
// IMG CHANGEOUT
// ****************

$(function() {
	$('#gallery-images a img').hover(
		function() {
		this.src = this.src.replace( /\.jpg$/, '_on.jpg' );
		},
		function() {
		this.src = this.src.replace( /_on\.jpg$/, '.jpg' );
		}
	);
});


