function beginHomepage(){
	image1 = new Image();
	image1.src = "http://www.alexfierro.com/dylan/imgs/homepage_1.jpg";
	image2 = new Image();
	image2.src = "http://www.alexfierro.com/dylan/imgs/homepage_2.jpg";
	image3 = new Image();
	image3.src = "http://www.alexfierro.com/dylan/imgs/homepage_3.jpg";
	image4 = new Image();
	image4.src = "http://www.alexfierro.com/dylan/imgs/homepage_4.jpg";
	image5 = new Image();
	image5.src = "http://www.alexfierro.com/dylan/imgs/homepage_5.jpg";
	image6 = new Image();
	image6.src = "http://www.alexfierro.com/dylan/imgs/homepage_6.jpg";
	image7 = new Image();
	image7.src = "http://www.alexfierro.com/dylan/imgs/homepage_7.jpg";
	image8 = new Image();
	image8.src = "http://www.alexfierro.com/dylan/imgs/homepage_8.jpg";
	image9 = new Image();
	image9.src = "http://www.alexfierro.com/dylan/imgs/homepage_9.jpg";

	var count1 = 1;
	var count2 = 1;
	var count3 = 1;
	new Effect.SlideDown($("section1"), {duration:3});
	new Effect.SlideDown($("section2"), {duration:3,scaleFromCenter:true});
	new Effect.SlideDown($("section3"), {duration:3});
	new PeriodicalExecuter(function(pe1) {
	 	updateHome1(count1);
	  	count1++;
	  	if(count1 == 4)
	  		count1 = 1;
	}, 10);
	new PeriodicalExecuter(function(pe1) {
	 	updateHome2(count2);
	  	count1++;
	  	if(count1 == 4)
	  		count1 = 1;
	}, 25);
	new PeriodicalExecuter(function(pe1) {
	 	updateHome3(count3);
	  	count1++;
	  	if(count1 == 4)
	  		count1 = 1;
	}, 15);
	
	function updateHome1(count){
	}
	
	function updateHome2(count){
	}
	
	function updateHome3(count){
		//$('section3').fade({ duration: 3.0, from: 1, to: 0 });
	}
}
