

//<![CDATA[
var quote=new Array();
  quote[0]='\"A good storage manager think marketing all the time\" - SS Almanac';   /* add as many quotes as you like!*/
  quote[1]='A down economy has forced America to abandon old marketing and refocus on what can be justified.';
  quote[2]='Occupancy rates continue to be off and have been on a steady decline for the past few years. - SS Almanac';
    quote[3]='It is not unusual... to see bills that run into the tens of thousands of dollars to place an ad in the Yellow pages. - SS Almanac';  
quote[4]='\"The average residential customer stays 13 months. The commercial customer stays 25 months." - SS Almanac';   
quote[5]='\"It is not necessary for every self storage store to utilize every advertising medium to be successful." - SS Almanac';  
quote[6]='\"40% of self storage facilities do not promote themselves online.\" - SS Almanac';   
  quote[7]='\"74% of those that have a website do not have a sales and marketing strategy. \" - SS Almanac';   
    quote[8]='368,000 searches each month contain the words \"self storage\" - Google Adwords';   
	    quote[9]='\"PWC estimated that >50% of all sales are impacted by search.\" - seroundtable.com';   

	
var speed=18000;    /*this is the time in milliseconds adjust to suit*/
var q=0;

function showQuote() {

     document.getElementById("quotes").innerHTML=quote[q];
     q++;
if(q==quote.length) {
     q=0;
  }
}
setInterval('showQuote()',speed);
   
 //]]>

