// JavaScript Document

function preloader() 

{
path = "http://happypixel.net/lounge/gobo/";

     // set image list
     images = new Array();
     images[0]=path+"img/home/catherine_tomoko_lg_9390.jpg"
     images[1]=path+"img/home/marketplace_posh1_lg_9281.jpg"
     images[2]=path+"img/home/Guests_lg_9423.jpg"
     images[3]=path+"img/home/connect_lg_9226.jpg"
     images[4]=path+"img/home/BrendaMelody_lg_9437.jpg"
     images[5]=path+"img/home/carrie_speaking_lg_9417.jpg"
     images[6]=path+"img/home/guests_lg_9440.jpg"
     images[7]=path+"img/home/Guests_lg_9428.jpg"
     images[8]=path+"img/home/Suzanne_Uwaji_lg_9406.jpg"
	 
     images[9]=path+"img/photo-BrendaHandley.jpg"
     images[10]=path+"img/photo-KarenArmstead.jpg"
	 
     images[11]=path+"img/testimonials/guests_posed_med_9427.jpg"
     images[12]=path+"img/testimonials/guests_chatting_med_9320.jpg"
     images[13]=path+"img/testimonials/danielle_melody_med_9413.jpg"
     images[14]=path+"img/testimonials/guests_chatting_med_9359.jpg"
	 
     images[15]=path+"img/events/guests_watching_med_9379.jpg"
     images[16]=path+"img/events/celebrate_med_9358.jpg"
     images[17]=path+"img/events/catherine_podium_med_9376.jpg"
     images[18]=path+"img/events/guests_chatting_med_9347.jpg"

     // create object
     imageObj = new Image();
	 
     // start preloading
     for(i=0; i<=images.length; i++) 
     {
          imageObj.src=images[i];
     }

} 