// JavaScript Document Copyright &copy; 2008 - RenWerx creative enterprise
// Script for rollover events starts here:
function updateSubInfo (myInfo) {
	if (document.getElementById("currentTitle")) { // DOM3 = IE5, NS6 
		var subInfo = document.getElementById("currentTitle"); 			
	} else if (document.currentTitle) { // Netscape 4 
		var subInfo = document.currentTitle; 
	} else if (document.all.currentTitle) { // IE 4 
		var subInfo = document.all.currentTitle; 
	} 
	if(myInfo=='Home'){
		subInfo.innerHTML='<span class="rolloverText">Lakeside Cooling Towers homepage.';
	}else if(myInfo=='Company'){
		subInfo.innerHTML='<span class="rolloverText">Get some background on Australasias premiere cooling tower manufacturer.</ span>';
	}else if(myInfo=='PMC'){
		subInfo.innerHTML='<span class="rolloverText">A look at our state-of-the art primary milk cooling technologies.</ span>';
	}else if(myInfo=='Clients'){
		subInfo.innerHTML='<span class="rolloverText">Lakeside Cooling Towers is proud to present past projects and prestigious clients.</ span>';
	}else if(myInfo=='Products'){
		subInfo.innerHTML='<span class="rolloverText">Browse our range of models for the perfect cooling solution.</ span>';
	}else if(myInfo=='Email'){
		subInfo.innerHTML='<span class="rolloverText">Send an enquiry email directly to our information desk.</ span>';
	}else if(myInfo=='Sitemap'){
		subInfo.innerHTML='<span class="rolloverText">Browse all contents with a brief explanation.</ span>';
	}
}
function clearSubInfo(){
	if (document.getElementById("currentTitle")) { // DOM3 = IE5, NS6 
		var subInfo = document.getElementById("currentTitle"); 			
	} else if (document.currentTitle) { // Netscape 4 
		var subInfo = document.currentTitle; 
	} else if (document.all.currentTitle) { // IE 4 
		var subInfo = document.all.currentTitle; 
	} 
	subInfo.innerHTML='<span>Welcome to Lakeside cooling towers.</ span>';
}
function navigateTo(myPage){
	if(myPage=='Home'){
		window.location="index.html"
	}else if(myPage=='Company'){
		window.location="company.html"
	}else if(myPage=='Sitemap'){
		window.location="siteMap.html"
	}
}
