// JavaScript Document
$(document).ready(function(){

var theQuotes = new Array();


theQuotes[0] = '"I have found my success as a systems engineer, working at Lockheed Martin Aeronautics Company\'s Advance Development Projects (AKA the Skunk Works). ...My Industrial Technology degree provided me with an invaluable introduction to the technological and economic principles necessary for success in industry." <br/><br/> <em>Thomas Mataya, Senior Systems Engineer, Class of 1999</em>';

theQuotes[1] = '"At Humboldt State I gained the ability to research and solve problems in industry." <br/><br/> <em>Paul Jensen Jensen Specialty Woodwork Salinas, California</em>';

theQuotes[2] ='"Humboldt gave me the manufacturing and entrepreneurial ability that enabled me to successfully build a business." <br/><br/> <em>Garth Miller Garth Miller Studios Ukiah, California</em>';

theQuotes[3] ='"HSU\'s Industrial Technology program made a significant impact on my life and provided me with the knowledge and experience necessary to make it in today\'s business environment." <br/><br/> Allen <em>Aldridge, Class of 2000 General Manager Jamestown Harley-Davidson</em>';

theQuotes[4] ='"A lot of my Industrial Technology classes were applicable to the job that I now have. My industrial health and safety class served as a kind preview of what to expect on the job. The manufacturing management emphasis exposed me to things like lean manufacturing techniques, quality control, and inventory management." <br/><br/><em>Daniel Browning, Class of 2004 Group Manager JELD-WEN Interior Doors</em>';

var j = 0;
var p = theQuotes.length;
var preBuffer = new Array();	

for (i = 0; i < p; i++){
   preBuffer[i] = new Image();
   preBuffer[i].src = theQuotes[i];
}


var whichQuote = Math.round(Math.random()*(p-1));

$("#quote_text").replaceWith("<p>" + theQuotes[whichQuote] + "</p>");


})

function showImages (){

var theImages = new Array();
var theAlt = new Array();


theImages[0] = '"images/header_img/caelab_1.jpg"';
theAlt[0] ='"CAE Lab"';
theImages[1] ='"images/header_img/caelab_2.jpg"';
theAlt[1] ='"CAE Lab"';
theImages[2] ='"images/header_img/construction_1.jpg"';
theAlt[2] ='"Construction Plans"';
theImages[3] ='"images/header_img/construction_2.jpg"';
theAlt[3]='"Construction Management"';
theImages[4] ='"images/header_img/mechatronics1.jpg"';
theAlt[4]='"Mechatronics Lab"';
theImages[5] ='"images/header_img/mechatronics2.jpg"';
theAlt[5]='"Mechatronics Lab"';

var j = 0;
var p = theImages.length;
var preBuffer = new Array();	

for (i = 0; i < p; i++){
   preBuffer[i] = new Image();
   preBuffer[i].src = theImages[i];
}


var whichImage = Math.round(Math.random()*(p-1));

$("#header_image").replaceWith('<img src='+theImages[whichImage]+' alt='+theAlt[whichImage]+' />');
}