function showbio(){
	var spin=new spinner('/resources/images/ajax-loader.gif');
	spin.setText("&nbsp;Loading Project Information");
	var html=""
		var key = "IP";
		var base = "/resources/ajax/proxy.php?url=";
		var url = "http://intranet.barickman.net:81/home.nsf/JSONBios?readviewentries";
		var rest = "&start=6&count=1&outputformat=JSON";
		
		spin.addToElement("#biodiv", false);
		//alert(base + url + rest)
		$.getJSON(base + escape(url + rest), function(data){
			var rec=data.viewentry[0].entrydata;
			//debugger;
			html="<span class=biotitle>Industry</span><br>";
			html+=rec[1].text[0];
			html+="<br><br><span class=biotitle>Description</span><br>";
			html+=rec[3].text[0];
			html+="<br><br><span class=biotitle>What we did</span><br>";
			html+=rec[4].text[0];
			html+="<br><br><span class=biotitle>Impact to Client</span><br>";
			html+=rec[5].text[0];
			spin.remove();
			
			$("#biodiv").hide().removeClass("biodivloading").addClass("biodivloaded").html(html).show("blind");
		});
	
}





