var partnerArray = new Array();

function menuShow(a)
{
	a.style.backgroundColor='#eee';
	
}
 
function menuHide(a)
{
	a.style.backgroundColor='#fff';
}

function showPartner(partnerNumber)
{
	
	for(var i = 0;i<partnerArray.length;i++){
		var obj=partnerArray[i];
		if(obj.index==partnerNumber){
			break;
		}
	}
	
	var content = document.getElementById('partnerContent');
	
	var html = '<h2>' + obj.impact;
	
	if(obj.headline !=""){
		html += ' - ' + obj.headline + '</h2>';
	}else{
		html += '</h2>';
	}
	//html += '<h1>' + obj.name + '</h1>';
	html += '<img src="' + obj.logo + '" style="max-width:350px">';
	html += '<p>' + obj.text + '</p>';
	html += '<a href="' + obj.link + '"><img src="' + obj.path + '"></a>'
	content.innerHTML =  html; 
}

function selectPartner(a)
{
	if(a !="NULL"){
	window.location = 'http://fullcircleexchange.com/' + a;
	
	}
}
