//HOMEPAGE LEAD links

startLinks = function(){

//retail

document.getElementById("lead-retail").onmouseover= function(){
	document.getElementById("lead-retail").className="lead-retail-hover";
	}

document.getElementById("lead-retail").onmouseout= function(){
	document.getElementById("lead-retail").className="";
	}

//banking

document.getElementById("lead-banking").onmouseover= function(){
	document.getElementById("lead-banking").className="lead-banking-hover";
	}

document.getElementById("lead-banking").onmouseout= function(){
	document.getElementById("lead-banking").className="";
	}

//commercial

document.getElementById("lead-commercial").onmouseover= function(){
	document.getElementById("lead-commercial").className="lead-commercial-hover";
	}

document.getElementById("lead-commercial").onmouseout= function(){
	document.getElementById("lead-commercial").className="";
	}

//authorities

document.getElementById("lead-authorities").onmouseover= function(){
	document.getElementById("lead-authorities").className="lead-authorities-hover";
	}

document.getElementById("lead-authorities").onmouseout= function(){
	document.getElementById("lead-authorities").className="";
	}


//Linkage

document.getElementById('lead-retail').onclick= function(){
	window.parent.location="retail-security-specialists.htm";
	}
	
document.getElementById('lead-commercial').onclick= function(){
	window.parent.location="contact.htm";
	
	}
	
document.getElementById('lead-authorities').onclick= function(){
	window.parent.location="contact.htm";
	}
	
document.getElementById('lead-banking').onclick= function(){
	window.parent.location="contact.htm";
	}


//NEWS

document.getElementById("news-1").onmouseover= function(){
	document.getElementById("news-1").className="news-wrapper-hover";
	document.getElementById("news-1").title="Download Jones The Bootmaker Case Study PDF";
	}

document.getElementById("news-1").onmouseout= function(){
	document.getElementById("news-1").className="news-wrapper";
	}
	
document.getElementById("news-2").onmouseover= function(){
	document.getElementById("news-2").className="news-wrapper-hover";
	document.getElementById("news-2").title="Download Goldmiths & Mapping and Web Case Study PDF";
	}

document.getElementById("news-2").onmouseout= function(){
	document.getElementById("news-2").className="news-wrapper";
	}
	
document.getElementById("news-3").onmouseover= function(){
	document.getElementById("news-3").className="news-wrapper-hover";
	document.getElementById("news-3").title="Download Counter Intelligence Case Study PDF";
	}

document.getElementById("news-3").onmouseout= function(){
	document.getElementById("news-3").className="news-wrapper";
	}

// NEWS LINKAGE 

document.getElementById("news-1").onclick= function(){
	window.parent.location="pdf/SSS-jones-bootmaker-press-release.pdf";
	}
	

document.getElementById("news-2").onclick= function(){
	window.parent.location="pdf/SSS-goldsmiths-press-release.pdf";
	}

document.getElementById("news-3").onclick= function(){
	window.parent.location="pdf/SSS-counter-intelligence.pdf";
	}

//INTRO:

document.getElementById("intro").onmouseover= function(){
	document.getElementById("intro").className="intro-hover";
	document.getElementById("intro").title="Discover how Helpdesk works for you";
	}

document.getElementById("intro").onmouseout= function(){
	document.getElementById("intro").className="";
	}

document.getElementById("intro").onclick= function(){
	window.parent.location="helpdesk.htm";
	}


}

window.onload=startLinks;