<!--
	function random_content(){
	var mycontent=new Array()
	//specify random content below, just copy a line and increase the number by 1 to add new images
	mycontent[1]='<img src="images/stock-01.jpg" border="0">'
	mycontent[2]='<img src="images/stock-02.jpg" border="0">'
	mycontent[3]='<img src="images/stock-03.jpg" border="0">'
	mycontent[4]='<img src="images/stock-04.jpg" border="0">'
	mycontent[5]='<img src="images/stock-05.jpg" border="0">'
	mycontent[6]='<img src="images/stock-06.jpg" border="0">'
	mycontent[7]='<img src="images/stock-07.jpg" border="0">'
	//end
	var ry=Math.floor(Math.random()*mycontent.length)
	if (ry==0)
	ry=1
	document.write(mycontent[ry])
	}
//-->
<!--
	function random_content2(){
	var mycontent=new Array()
	//specify random content below, just copy a line and increase the number by 1 to add new images
	mycontent[1]='<img src="images/prod-roof1.jpg" align="right" border="1">'
	mycontent[2]='<img src="images/prod-roof3.jpg" align="right" border="1">'
	mycontent[3]='<img src="images/prod-window3.jpg" align="right" border="1">'
	mycontent[4]='<img src="images/prod-siding.jpg" align="right" border="1">'
	mycontent[5]='<img src="images/prod-basement2.jpg" align="right" border="1">'
	mycontent[6]='<img src="images/prod-kitchen1.jpg" align="right" border="1">'
	mycontent[7]='<img src="images/prod-patio1.jpg" align="right" border="1">'
	//end
	var ry=Math.floor(Math.random()*mycontent.length)
	if (ry==0)
	ry=1
	document.write(mycontent[ry])
	}
//-->
<!--
	var message="Function Disabled!";

///////////////////////////////////
	function clickIE4(){
		if (event.button==2){
			alert(message);
			return false;
		}
	}

	function clickNS4(e){
		if (document.layers||document.getElementById&&!document.all){
			if (e.which==2||e.which==3){
				alert(message);
				return false;
			}
		}
	}

	if (document.layers){
		document.captureEvents(Event.MOUSEDOWN);
		document.onmousedown=clickNS4;
	}
	else if (document.all&&!document.getElementById){
		document.onmousedown=clickIE4;
	}
	document.oncontextmenu=new Function("alert(message);return false")
// -->

