
<!--   randomize functions //-->
function getScheme(number, width, height)
{
	var randomize = Math.round(Math.random()*3+1)
	if (number == 1){
document.write('<a href="images/landscape_big'+randomize+'.jpg" rel="thumbnail"><img src="images/landscape'+randomize+'.jpg" alt="" width="'+width+'" height="'+height+'" border="0"></a>')
}else if (number == 2){
document.write('<a href="images/property_big'+randomize+'.jpg" rel="thumbnail"><img src="images/property'+randomize+'.jpg" alt="" width="'+width+'" height="'+height+'" border="0"></a>')
}else{
document.write('<a href="images/hardscape_big'+randomize+'.jpg" rel="thumbnail"><img src="images/hardscape'+randomize+'.jpg" alt="" width="'+width+'" height="'+height+'" border="0"></a>')
}}

function getHomeScheme(number, width, height)
{
	var randomize = Math.round(Math.random()*3+1)
	if (number == 1){
document.write('<a href="landscape.html"><img src="images/landscape'+randomize+'.jpg" alt="" width="'+width+'" height="'+height+'" border="0"></a>')
}else if (number == 2){
document.write('<a href="maintenance.html" ><img src="images/property'+randomize+'.jpg" alt="" width="'+width+'" height="'+height+'" border="0"></a>')
}else{
document.write('<a href="hardscape.html"><img src="images/hardscape'+randomize+'.jpg" alt="" width="'+width+'" height="'+height+'" border="0"></a>')
}}


