function testimonalBubble(bubble, testimonial){
	
	/*var cssObj = {
		'width' : '50%',
		'height' : '50%'
	}
	$("#"+testimonial).css(cssObj);
	
	$("#"+bubble).mouseover(function(){
		$("#"+testimonial).animate({ 
		  width: "200%",
		  height: "240%",
		  opacity: 1
		}, 1000 );
	});
	$("#"+testimonial).mouseout(function(){
		$("#"+testimonial).animate({ 
		  width: "50%",
		  height: "50%",
		  opacity: 0
		}, 1000 , '', function() { $("#"+testimonial).stop(); });
	});*/
	$("#"+bubble).mouseover(function(){
		$("#"+testimonial).show();
	});
	$("#"+bubble).mouseout(function(){
		$("#"+testimonial).hide();
	});
}