$(function(){	$('.hover').each(function(){		var Src = $(this).attr('src');		var file = Src.split('.');		$(this).hover(			function(){				$(this).stop(true, true).fadeOut('normal',function(){					$(this).attr('src',file['0']+'_o.jpg');					$(this).fadeIn('normal');				});			},			function(){				$(this).stop(true, true).fadeOut('normal',function(){					$(this).attr('src',file['0']+'.jpg');					$(this).fadeIn('normal');				});			}		);			});});
