jQuery.fn.TxtSlideShow = function(n){

		var $container = $(this);
		
		$container.css({position:"relative"});
		$container.children().css({position:"absolute",top:"0",left:"0"});
		// Set block height equal to tallest child
		 var blockHeight=0;
		 $container.children().each(function(){
		 	if($(this).height() >= blockHeight){
		 		blockHeight = $(this).height();
		 		};
		 });
		 $(this).height(blockHeight);
		 // Hide all but first child		
		 $(this).children(':not(:first)').hide();
		setInterval(function(){
		 	$current = $container.children(':visible');
		 	$first = $container.children(':first');
		 	if($current.next().length){
		 		$current.fadeOut('slow').next().fadeIn('slow');
		 	} else {
		 		$current.fadeOut('slow');
		 		$first.fadeIn('slow');
		 	};
		 }, n);

			};