jQuery().ready(function(){

	jQuery(".finishes").find("li a").hover(
		function() {
			var imgSrc = $( this ).attr( "href" );
			if ( imgSrc != "" && imgSrc != "#" ) {
				jQuery( "#product" ).attr("src", imgSrc );
			}
		},
		function() {}
	);

});