function random_project(){	var project=new Array();	//specify random content below.	project[0]="<a class='featuredPrj' href='projects-featured-utschoolofnursing.html'><img name='' src='assets/images/featureproject-1.jpg' width='175' height='75' alt='' border='0' /></a><h2>UT School of Nursing</h2><p>This project is the largest green academic building in the Southwest.  The facility is expected to receive a LEED® Gold rating.</p><p><a href='projects-featured-utschoolofnursing.html'>Click to Learn More &raquo;</a></p>";	project[1]="<a class='featuredPrj' href='projects-featured-memorialhospital.html'><img name='' src='assets/images/featureproject-2.jpg' width='175' height='75' alt='' border='0' /></a><h2>Memorial Hermann Hospital</h2><p>With the advent of new medical technology, the need for electrical precision has become more and more a necessity of the medical construction industry, today.</p><p><a href='projects-featured-memorialhospital.html'>Click to Learn More &raquo;</a></p>";	project[2]="<a class='featuredPrj' href='projects-featured-stmartins.html'><img name='' src='assets/images/featureproject-3.jpg' width='175' height='75' alt='' border='0' /></a><h2>St. Martin Episcopal Church</h2><p>As part of this project’s design team, Pieper-Houston Electric helped create this one-of-a-kind lighting design, encompassing large dimming systems, which illuminates the church’s elaborate and beautiful stain glass windows.</p><p><a href='projects-featured-stmartins.html'>Click to Learn More &raquo;</a></p>";	project[3]="<a class='featuredPrj' href='projects-featured-atascocita.html'><img name='' src='assets/images/featureproject-5.jpg' width='175' height='75' alt='' border='0' /></a><h2>Atascocita High School</h2><p>Pieper has also played a key role in the development of the lighting, data, security, fire alarm and other miscellaneous systems throughout this giant high school.</p><p><a href='projects-featured-atascocita.html'>Click to Learn More &raquo;</a></p>";	project[4]="<a class='featuredPrj' href='projects-featured-marathon.html'><img name='' src='assets/images/featureproject-4.jpg' width='175' height='75' alt='' border='0' /></a><h2>Marathon Petroleum</h2><p>Marathon Petroleum is a winner of the “Outstanding Construction Awards for 2006” and allowed us to display our true operating procedures & “Core Team Efforts” at their best</p><p><a href='projects-featured-marathon.html'>Click to Learn More &raquo;</a></p>";	var np=Math.floor(Math.random()*project.length);	var op=99;	if (getCookie("cookie") != null) { 		op = getCookie("cookie"); 		}	while (np == op) { 		np=Math.floor(Math.random()*project.length) 	};	document.write(project[np]);	setCookie ("cookie",np);	}function setCookie(name, value){	var expdate = new Date();	expdate.setHours(expdate.getHours() + 9999);	document.cookie = name + '=' + value + '; expires=' + expdate.toGMTString() + '; path=/';}function getCookie(variable){	var cookieValue = document.cookie;	var cookieStartsAt = cookieValue.indexOf(" " + variable + "=");	if (cookieStartsAt == -1) {		cookieStartsAt = cookieValue.indexOf(variable + "=");	}	if (cookieStartsAt == -1) {		cookieValue = null;	}	else {		cookieStartsAt = cookieValue.indexOf("=", cookieStartsAt) + 1;		var cookieEndsAt = cookieValue.indexOf(";", cookieStartsAt);		if (cookieEndsAt == -1) {			cookieEndsAt = cookieValue.length;		}		cookieValue = unescape(cookieValue.substring(cookieStartsAt, cookieEndsAt));	}	return cookieValue;}