var captionLength = 0;
var caption = "";


function testTypingEffect()
{
    caption = "Quality &#8226; Efficiency &#8226; Responsiveness";
  type();
}

function type() 
{
	$('p.caption').html(caption.substr(0, captionLength++));
	if(captionLength < caption.length+1)
	{
		setTimeout("type()", 50);
	}
	else {
		captionLength = 0;
		caption = "";
	}	
}
