$(document).ready(function() {
	
	$("#clientBox1").hide();
	$("#clientBox2").hide();
	$("#clientBox3").hide();
	$("#clientBox4").hide();
	
	var clienttext = new Array();
	
	clienttext[1] = "<div><strong>Management Consultancies Association (MCA)</strong><br/>The MCA is the representative body for management consultancy firms in the UK.<br/><a href='/work/management-consultancies-association/'><strong>more…</strong></a></div>";
	clienttext[2] = "<div><strong>PIPC</strong><br/>PIPC is one of the fastest growing management consultancy’s in the UK.<br/><a href='/work/pipc/'><strong>more…</strong></a></div>";
	clienttext[3] = "<div><strong>LCP Consulting</strong><br/>LCP is a leading specialist in customer-driven supply chain management.<br/><a href='/work/lcp-consulting/'><strong>more…</strong></a></div>";
	clienttext[4] = "<div><strong>Xantus Consulting</strong><br/>Xantus is an independent management consultancy, specialising in IT-enabled business change.<br/><a href='/work/xantus-consulting/'><strong>more…</strong></a></div>";
	clienttext[5] = "<div><strong>Sourceforconsulting.com</strong><br/>Sourceforconsulting.com is a leading provider of information about the market for management consulting.<br/><a href='/work/source/'><strong>more…</strong></a></div>";
	clienttext[6] = "<div><strong>Fascia Graphics</strong><br/>Fascia Graphics is the market leader for the production of graphics overlays and membrane keypads.<br/><a href='/work/fascia/'><strong>more…</strong></a></div>";
	clienttext[7] = "<div><strong>ReynoldsBusbyLee (RBL)</strong><br/>RBL is a consultancy specialising in multi-channel direct marketing.</div>";
	clienttext[8] = "<div><strong>Genuine Car Services (GCS)</strong><br/>GCS provides motorists in Bath and across the South West with a one stop shop for all their motor service needs.<br/><a href='/work/gcs/'><strong>more…</strong></a></div>";
	clienttext[9] = "<div><strong>The Dental Implant Clinic</strong><br/>The Dental Implant Clinic is a Bath based custom-built clinic which is dedicated to dental implants.<br/><a href='/work/the-dental-implant-clinic/'><strong>more…</strong></a></div>";
	clienttext[10] = "<div><strong>Observatory International</strong><br/>The Observatory International offers support at every stage of planning, procurement, resource allocation, agency selection and relationship management.</div>";
	clienttext[11] = "<div><strong>Simplicity</strong><br/>Simplicity is a new management consultancy which unleashes the human and financial potential of companies by removing value destructive complexity.</div>";
	clienttext[12] = "<div><strong>DrPete Inc</strong><br/>DrPete Inc, is a specialist independent consultancy providing advice on IT review and strategy, business growth, M&A, and executive coaching.</div>";

	
	$("a.client").click(function() {
		var elid = $(this).attr('id');
		var id = elid.split("_");
		for(i = 1; i <= 12; i++) {
			$("#clientpic_" + i).removeClass("active");
		}
		$("#clientpic_" + id[1]).addClass("active");
		if(id[1] >= 1 && id[1] <= 3) {
			var box = 1;
		}
		if(id[1] >= 4 && id[1] <= 6) {
			var box = 2;
		}
		if(id[1] >= 7 && id[1] <= 9) {
			var box = 3;
		}
		if(id[1] >= 10 && id[1] <= 12) {
			var box = 4;
		}
		$("#clientBox" + box).html(clienttext[id[1]]);
		if(box != 1) {
			$("#clientBox1").hide("slow");
		}
		if(box != 2) {
			$("#clientBox2").hide("slow");
		}
		if(box != 3) {
			$("#clientBox3").hide("slow");
		}
		if(box != 4) {
			$("#clientBox4").hide("slow");
		}
		$("#clientBox" + box).removeClass("left centre right");
		
		if(id[1] == 1 || id[1] == 4 || id[1] == 7 || id[1] == 10) {
			$("#clientBox" + box).addClass("left");
		} else if(id[1] == 2 || id[1] == 5|| id[1] == 8 || id[1] == 11) {
			$("#clientBox" + box).addClass("centre");
		} else if(id[1] == 3 || id[1] == 6  || id[1] == 9 || id[1] == 12  ) {
			$("#clientBox" + box).addClass("right");
		}
		
		
		
		
		$("#clientBox" + box).show("slow");
		
	});
	
});
