var quotes=new Array('Literacy Services of Wisconsin', 'Choices, Inc.', 'The First Tee of St. Petersburg', 'Stillwater Public Library', 'Racine Arts Council', 'The Fairfield Arts & Convention Center', 'The Tarrytown Music Hall', 'Gig Harbor Boat ShopCore El Centro', 'Nancy Sellars Memorial Foundation', 'World Children\'s Promise', 'Today Ministries', 'Pure Flow Ministries', 'Swedenborgian Church', 'Family Unity International', 'NAMI Waukesha', 'Racine Arts Council', 'Greenwell Foundation', 'Port Catholic', 'Wayne County Public Library', 'Malaika Early Learning Center', 'Wisconsin Academy of Science', 'Elmbrook Humane Society', 'Waukesha Food Pantry', 'Environmental Law Center', 'Community Childcare Support Foundation', 'American Philharmonic', 'Milwaukee LGBT Community Center', 'Alpine Theater Project');	 var cs=-1;
	 var start=true;
	 var delai;
	 var nq=quotes.length-1;
	 
	 function populate(){
	  if(cs<nq){cs++; }
	  else {cs=0;}
	   
	   var cssObj = {
        'margin-top' : '0', 'margin-right' : '0', 'margin-bottom' : '0', 'margin-left' : '0',
		'padding-top':'0', 'padding-right':'0', 'padding-bottom':'0', 'padding-left':'0'
      }

	   	if(start){
		$("#div2 p").hide(); 
		$("#div1 p").hide();
		
		$("#div1 p").css(cssObj);
	    $("#div2 p").css(cssObj);
		start=false;
		}

	 if(cs%2==0){  
	     $("#div1 p").html(quotes[cs]);
	     $("#div1 p").fadeIn(500);
		 $("#div2 p").slideUp(1000);
	   }
	   else {
	     $("#div2 p").html(quotes[cs]);
	     $("#div2 p").fadeIn(500);
		 $("#div1 p").slideUp(1000);
	   }

	 }//end populate
	 
	 $(document).ready( function(){ 
	 populate();
	 delai=setInterval(populate, 1000); } 
	 );
	 