// PORTFOLIO - GET DESCRIPTION
function getDesc(iddesc)
{
document.getElementById("pshowprojectimg").src = "images/loader.gif";

var project=new Array();
project[0]="<p><b>Datacat</b><br /><br />Datacat specialises in installing stringently tested structured cabling for telephone and IT systems</p>";
project[1]="<p><b>Lynx Computing</b><br /><br />Providing IT support, Lynx offers a comprehensive service identifying the key technologies to power businesses forward</p>";
project[2]="<p><b>SBA Group</b><br /><br />SBA provides an integrated portfolio of services embracing recruitment, ICT equipment provision and programme management</p>";
project[3]="<p><b>Key Mortgage Services</b><br /><br />KMS provide specialist advice on a range of mortgage services from residential repossession to commercial acquisitions</p>";

var projectimg=new Array();
projectimg[0]="pf-corporate-datacat-big.jpg";
projectimg[1]="pf-corporate-lynxcomputing-big.jpg";
projectimg[2]="pf-corporate-sbagroup-big.jpg";
projectimg[3]="pf-corporate-keymortgage-big.jpg";

document.getElementById("pdesc").innerHTML = project[iddesc];

document.getElementById("pshowprojectimg").src = "images/" + projectimg[iddesc];
}
// END of PORTFOLIO - GET DESCRIPTION

