var theta = 0;
var ro = 6;
$(document).ready(function() {
		$("#corpsPageTextIn p i").everyTime(360, function() {
		theta += 1;
		xsize = ro * Math.cos(theta) ;
		blur = 3 + (2* Math.sin(theta)) ;
		$(this).css('text-shadow', xsize+'px 0px '+blur+'px #fff');
	});

});
