// JavaScript Document
function randRange(lowVal,highVal) {
     return Math.floor(Math.random()*(highVal-lowVal+1))+lowVal;
}
// Set up news items -> Change randRange(1,[N])  where N is number of featured projects

var randVal = randRange(1,[3]);

//Project link inserted here.
if (randVal == 1) {
     document.write('<a href="/projects/commercial/10/">Rolls Royce - Barton-under-Needwood <img src="/style/images/arrow_r.gif" alt="" width="9" height="9" align="bottom"></a>')
} else if (randVal == 2) {
     document.write('<a href="/projects/industrial/11/">VW / Audi Group - Dordon <img src="/style/images/arrow_r.gif" alt="" width="9" height="9" align="bottom"></a>')
} else if (randVal == 3) {
     document.write('<a href="/projects/residential/3/">Warehouse Conversion - London <img src="/style/images/arrow_r.gif" alt="" width="9" height="9" align="bottom"></a>')
}