
$(document).ready(function() {
	$('#superTxt').children().hide();
	$('#superTxt').children().children().hide();
	var funone = function() {jQuery($('#superTxt').children()[0]).fadeIn(1000)};
	var tone = window.setTimeout(funone, 1500);
	var funtwo = function() {jQuery($('#superTxt').children()[1]).fadeIn(1000)};
	var ttwo = window.setTimeout(funtwo, 2500);
	var funthree = function() {jQuery($('#superTxt').children()[1]).children().fadeIn(1000)};
	var tthree = window.setTimeout(funthree, 3500);
	var funfour = function() {jQuery($('#superTxt').children()[0]).children().fadeIn(1000)};
	var tfour = window.setTimeout(funfour, 2500);
});	