function boxon(){
	jQuery(this).find('img').stop(true,true).fadeOut(100);
	jQuery(this).find('span').stop(true,true).fadeIn(100);
}
function boxoff(){
	jQuery(this).find('img').stop(true,true).fadeIn(100);
	jQuery(this).find('span').stop(true,true).fadeOut(100);
}
jQuery(document).ready(function(){
	jQuery('.box span').hide();
	jQuery('.box').hover(boxon,boxoff);
});
