// JavaScript Document

	function fisherYates ( myArray ) {
  var i = myArray.length;
  if ( i == 0 ) return false;
  while ( --i ) {
     var j = Math.floor( Math.random() * ( i + 1 ) );
     var tempi = myArray[i];
     var tempj = myArray[j];
     myArray[i] = tempj;
     myArray[j] = tempi;
   }
}





$(document).ready(function(){ 

setTimeout('dorval()',3000);

		
	});
	
	
function dorval() {

var r_val = new Array ( "<span class='valuenum'>Core Value #1:</span> <span class='cvalue'>We are first and foremost a customer service company-that specializes in Steel Detailing and 3D Modeling</span>", 
	"<span class='valuenum'>Core Value #2:</span> <span class='cvalue'>Our employees will remain on the forefront of Steel Knowledge and Technical Skills through continuous, dedicated training</span>", 
	"<span class='valuenum'>Core Value #3:</span> <span class='cvalue'>Build Open, Honest Relationships through Consistent Communication</span>", 
	"<span class='valuenum'>Core Value #4:</span> <span class='cvalue'>Always impress with our Service</span>", 
	"<span class='valuenum'>Core Value #5:</span> <span class='cvalue'>Create opportunities for ALL: Clients, Owners, PCD and our Employees to Thrive and Profit</span>", 
	"<span class='valuenum'>Core Value #6:</span> <span class='cvalue'>A Team Approach ALWAYS wins</span>", 
	"<span class='valuenum'>Core Value #7:</span> <span class='cvalue'>We are the BEST - we show we are the BEST each and every day, on each and every project</span>", 
	"<span class='valuenum'>Core Value #8:</span> <span class='cvalue'>Always act as a CREATIVE member of the design/build team</span>", 
	"<span class='valuenum'>Core Value #9:</span> <span class='cvalue'>Proactive Solutions Provide RESULTS -we are Proactive on every project, with every issue</span>", 
	"<span class='valuenum'>Core Value #10:</span> <span class='cvalue'>Project Flow maintains consistent output and scheduling. Every employee maintains Project Flow every time, in every project</span>" );
fisherYates(r_val);
var my_val = r_val[0];


$("#corevalueslip").html(my_val);
$("#corevalueslip").slideDown(2000);


setTimeout('$("#corevalueslip").slideUp(1300);setTimeout("dorval()",2000)',9000);




}

