$(document).ready(function() {
	//home page
	setTimeout(animate_home,1800);
	setTimeout(animate_home_2,2200);
	
	//scrolling text
	fleXenv.fleXcrollMain('scroll_text_out');
	
	//read more page
	$('#read_more_btn').click(function(){
		$('.full_text').show();$('.less_text').hide();
		fleXenv.fleXcrollMain('scroll_text_out');
	});	
	$('#back_btn').click(function(){
		$('.less_text').show();$('.full_text').hide();
	});
	
});

function animate_home(){
	$('#intro_page').fadeOut(400);	
}
function animate_home_2(){
	$('#home_inside').fadeIn(400);
}
