// JavaScript Document

// all require jQuery Library
$( document ).ready( function() { // begin when the *page* has loaded and the DOM is ready
	$( function() {
	// preload rollover images
		$.preload( '.retouched_image', {
			find:'.jpg',
			replace:'-before.jpg'
		});
		
	// before and after rollovers
		$( '.retouched_image' ).hover(
			function() {
				//this.src = this.src.replace( /\.jpg$/, '-before.jpg' );
				this.src = this.src.replace( /-after\.jpg$/, '-before.jpg' );
			},
			function() {
				//this.src = this.src.replace( /-before\.jpg$/, '.jpg' );
				this.src = this.src.replace( /-before\.jpg$/, '-after.jpg' );
			}
		);
	}); 
});
