/*
	Copyright (c) 2004-2009, The Dojo Foundation All Rights Reserved.
	Available via Academic Free License >= 2.1 OR the modified BSD license.
	see: http://dojotoolkit.org/license for details
*/
dojo.require("dojo.fx");




dojo.addOnLoad(function(){

	flowplayer("home_photobox", "http://www.brooksidetownhomes.com/swf/flowplayer-3.1.3.swf",{
				clip:{
				   autoPlay: true, 
				   autoBuffering: true, 
				   url:"http://www.brooksidetownhomes.com/videos/brookside_final_commercial.FLV",
				   controls:null
				   }
				,
				plugins:{
					controls:null
				}
			   
			   
						}).play(); 


	var i = 0;

	imageObj = new Image();
    
	images = new Array();     
	images[0]="images/home/home_image_1.jpg";
	images[1]="images/home/home_image_2.jpg";
	images[2]="images/home/home_image_3.jpg";
	images[3]="images/home/home_image_4.jpg";
	images[4]="images/home/home_image_5.jpg";
	images[5]="images/home/home_image_6.jpg";
	images[6]="images/home/home_image_7.jpg";
	images[7]="images/home/home_image_8.jpg";

	for(i=0; i<=7; i)      {
		imageObj.src=images[i];
		imageObj.onLoad=i++;
	}

	var thumbnail_1 = dojo.byId("thumbnail_1");
	var thumbnail_2 = dojo.byId("thumbnail_2");
	var thumbnail_3 = dojo.byId("thumbnail_3");
	var thumbnail_4 = dojo.byId("thumbnail_4");
	var thumbnail_5 = dojo.byId("thumbnail_5");
	var thumbnail_6 = dojo.byId("thumbnail_6");
	var thumbnail_7 = dojo.byId("thumbnail_7");
	var thumbnail_8 = dojo.byId("thumbnail_8");

	var home_photobox = dojo.byId("home_photobox");
	
	dojo.connect(thumbnail_1, "onclick", function(){

		dojo.fadeOut({
			node: "home_photobox",
			duration: 500,
			delay: 0,
			onEnd: function(){
				home_photobox.innerHTML = '<img src = \"images/home/home_image_1.jpg\">';
			    dojo.fadeIn({node: "home_photobox",	duration: 500, delay: 0}).play();
			}
		}).play();	

    });
	
	dojo.connect(thumbnail_2, "onclick", function(){

		dojo.fadeOut({
			node: "home_photobox",
			duration: 500,
			delay: 0,
			onEnd: function(){
				home_photobox.innerHTML = '<img src = \"images/home/home_image_2.jpg\">';
			    dojo.fadeIn({node: "home_photobox",	duration: 500, delay: 0}).play();
			}
		}).play();	

    });
		
	dojo.connect(thumbnail_3, "onclick", function(){

		dojo.fadeOut({
			node: "home_photobox",
			duration: 500,
			delay: 0,
			onEnd: function(){
				home_photobox.innerHTML = '<img src = \"images/home/home_image_3.jpg\">';
			    dojo.fadeIn({node: "home_photobox",	duration: 500, delay: 0}).play();
			}
		}).play();	

    });
			
	dojo.connect(thumbnail_4, "onclick", function(){

		dojo.fadeOut({
			node: "home_photobox",
			duration: 500,
			delay: 0,
			onEnd: function(){
				home_photobox.innerHTML = '<img src = \"images/home/home_image_4.jpg\">';
			    dojo.fadeIn({node: "home_photobox",	duration: 500, delay: 0}).play();
			}
		}).play();	

    });
				
	dojo.connect(thumbnail_5, "onclick", function(){

		dojo.fadeOut({
			node: "home_photobox",
			duration: 500,
			delay: 0,
			onEnd: function(){
				home_photobox.innerHTML = '<img src = \"images/home/home_image_5.jpg\">';
			    dojo.fadeIn({node: "home_photobox",	duration: 500, delay: 0}).play();
			}
		}).play();	

    });
					
	dojo.connect(thumbnail_6, "onclick", function(){

		dojo.fadeOut({
			node: "home_photobox",
			duration: 500,
			delay: 0,
			onEnd: function(){
				home_photobox.innerHTML = '<img src = \"images/home/home_image_6.jpg\">';
			    dojo.fadeIn({node: "home_photobox",	duration: 500, delay: 0}).play();
			}
		}).play();	

    });
						
	dojo.connect(thumbnail_7, "onclick", function(){

		dojo.fadeOut({
			node: "home_photobox",
			duration: 500,
			delay: 0,
			onEnd: function(){
				home_photobox.innerHTML = '<img src = \"images/home/home_image_7.jpg\">';
			    dojo.fadeIn({node: "home_photobox",	duration: 500, delay: 0}).play();
			}
		}).play();	

    });
							
	dojo.connect(thumbnail_8, "onclick", function(){

		dojo.fadeOut({
			node: "home_photobox",
			duration: 500,
			delay: 0,
			onEnd: function(){
				home_photobox.innerHTML = '<img src = \"images/home/home_image_8.jpg\">';
			    dojo.fadeIn({node: "home_photobox",	duration: 500, delay: 0}).play();
			}
		}).play();	

    });
});
		