$(function() {
	hide_pre_animation();
	animate_home_box();
});

function hide_pre_animation() {
	$('.indexTexts *').hide();
	$('.indexTexts').css({
			height: "0",
			top: "282px"
	});
}

function animate_home_box () {
	$('.indexTexts').animate({
		height: "101px",
		top: "232px"
	}, 1000,0,function() {
		animate_home_text();
	});
}

function animate_home_text() {
	$('.indexTexts h1').fadeIn("fast", function () {
        $('.indexTexts h2').fadeIn();
    });

	
}
