$('.bubble').fadeOut();

$('.phone').hover(function() {
// Mouse over function
	$('.tsr_text span').stop(true,true).fadeOut();
	$(this).children('div').fadeIn();
}, function() {
// Mouse out function
	$('.tsr_text span').delay(200).fadeIn();
	$(this).children('.bubble').fadeOut();
});
