$(document).ready(function(){
	$('.HoverFace a').hover(function(){
		$('span img',$(this)).fadeOut();
		//$('>img',$(this)).fadeIn();//Khong co cung ko sao
	},function(){
		$('span img',$(this)).fadeIn();
		//$('>img',$(this)).fadeOut();//Neu bo phia tren thi bo luon o day
	})
});		


