//<!--

// The Array Function 

function makeArray(len) {

    for (var i = 0; i < len; i++) this[i] = null;

this.length = len;

}



// This is where the array of text/images/sounds is created.

art = new makeArray(3);

art[0] = '<img src="_img/leasing/feature_5thave.jpg" width="195" height="250" alt="Fifth Avenue Place" /><br /><p><strong>Fifth Avenue Place</strong><br />420 - 2nd Street SW<br />Calgary, AB<br /><a href="http://www.brookfieldproperties.com/building/detail.cfm?BID=239&RID=249" target="new">View property website</a><br /><a href="/pdf/FAP package.pdf" target="new">View Brochure</a></p>';

art[1] = '<img src="_img/leasing/feature_springborough.jpg" width="195" height="250" alt="Springborough Professional Centre" /><br /><p><strong>Springborough Professional<br />Centre</strong><br />30 Spingborough Blvd. S.W.<br />Calgary, AB<br /><a href="/pdf/Brochure_SprinboroughProfessionalCentre.pdf" target="new">View Brochure</a></p>';

art[2] = '<img src="_img/leasing/feature_medicinehat.jpg" width="195" height="250" alt="Medicine Hat" /><br /><p><strong>Medicine Hat</strong><br />102 6 Avenue SE<br />Medicine Hat, AB<br /><a href="/pdf/BROCHURE-102%206%20Avenue%20SE-Medicine%20Hat.pdf" target="new">View Brochure</a></p>';


// The random number generator.

function rand2(n) {

	seed = (0x015a4e35 * seed) % 0x7fffffff;

return (seed >> 5) % n;

}



var now = new Date()

var seed = now.getTime() % 0xffffffff

//-->