// JavaScript Document
function display_quote(quotenumber,quotepiece) {
quotes = new Array();

quotes [0] = new Array(4)
quotes [0][0] = "D";
quotes [0][1] = "uring our association with Semaphore, we've asked them for some pretty unusual things. But whatever it has been, they've delivered. From design, to media buying to PR, their staff is so knowledgeable and experienced. You can tell that they want their clients to be successful.";
quotes [0][2] = "Shari Baker";
quotes [0][3] = "Three Rivers Behavioral Health";

quotes [1] = new Array(4)
quotes [1][0] = "S";
quotes [1][1] = "emaphore has designed more than a dozen annual reports, marketing brochures, and newsletters for us.  Without exception, they were dazzling, elegant, and distinctive.  It is a pleasure to work with Semaphore.";
quotes [1][2] = "David D. Dodge";
quotes [1][3] = "president & CEO, PHT Services, Ltd. (Columbia, SC)";

quotes [2] = new Array(4)
quotes [2][0] = "W";
quotes [2][1] = "hether you are branding for the first time, or re-branding as we were, it is not easy. When SC State needed a new brand, Semaphore worked with us all the way from market research to brand deployment. At the end of the process, we had a foundation on which we could build a marketing communications campaign for the entire University.";
quotes [2][2] = "Erica Prioleau";
quotes [2][3] = "SC State University";

quotes [3] = new Array(4)
quotes [3][0] = "W";
quotes [3][1] = "e have always worked with many different target audiences. Semaphore has been great at helping us manage our messages to all of them. They know what to say and how to say it to get results.";
quotes [3][2] = "Fred Gassaway";
quotes [3][3] = "The South Carolina Power Team";

quotes [4] = new Array(4)
quotes [4][0] = "S";
quotes [4][1] = "emaphore has provided design services, web site development and maintenance, and other services for us for nearly 10 years.  Their work quality is consistently outstanding and working with them is a pleasure.";
quotes [4][2] = "James Morton";
quotes [4][3] = "J. Marion Sims Foundation";

quotes [5] = new Array(4)
quotes [5][0] = "W";
quotes [5][1] = "orking with any group of independent organizations that have chosen to coordinate their messaging efforts can be a challenge. And so it is for Semaphore working with us and our member-utilities. An agency's creativity must be matched by its good communication, coordination and execution. That's why we've worked with Semaphore for so long";
quotes [5][2] = "Lou Green";
quotes [5][3] = "Executive Vice President of the Electric Cooperatives of SC";



document.write(quotes [quotenumber][quotepiece]);

}




function randomToN()
{
	var maxVal=5; //update this when you update the array!!!
	var OneLess = maxVal+1;
//	var floatVal=0;
 //  var randVal = Math.random()*maxVal;
 //  return typeof floatVal=='undefined'?Math.round(randVal):randVal.toFixed(floatVal);
 
    var rand_no = Math.floor(OneLess*Math.random())
    return rand_no;

 
}

myrandom=randomToN();
