var contact = "<div class=\"cdetails\">" +
			  "Mobile: 0411 864 076 (Robert Corvaia)<br />" +
			  "Email: <a href=\"mailto:admin@civplex.com.au\">admin@civplex.com.au</a><br />" +
			  "Fax: (02) 9753 0112" +
			  "</div>";

window.onload = init;

function init() {
	
	document.getElementById("contact").innerHTML= contact;
}


function switchimg(x) {
	var s = document.getElementById("img1").src;
	var s1 = x.src;
	document.getElementById("img1").src = s1;
	x.src = s;
}

