/*
+-------------------------------+
|	Country nav functionality	|
+-------------------------------|
|	Developer:	OS				|
+-------------------------------+
*/
var country_array = new Array("uk","france","germany","croatia","spain","italy","austria","switzerland","ireland");
function country_toggle(strCountry){
	for(i=0;i<country_array.length;i++){
		if(country_array[i]!=strCountry){
//			alert(i + ' ' + strCountry);
			//eval('document.getElementById(\'country_'+country_array[i]+'\').removeAttribute(\'style\')');
			eval('document.getElementById(\'country_'+country_array[i]+'\').style.display="none"');
			eval('document.getElementById(\'link_'+country_array[i]+'\').removeAttribute(\'style\')');
		}
	}
	if(eval('document.getElementById(\'country_'+strCountry+'\').style.display')=="block"){
		//eval('document.getElementById(\'country_'+strCountry+'\').removeAttribute(\'style\')');
		eval('document.getElementById(\'country_'+strCountry+'\').style.display="none"');
		eval('document.getElementById(\'link_'+strCountry+'\').removeAttribute(\'style\')');
	}else{
		eval('document.getElementById(\'country_'+strCountry+'\').style.display="block"');
		eval('document.getElementById(\'link_'+strCountry+'\').style.backgroundColor="#944b28"');
		
	}
}

function country_year_toggle(strYear){
/*
	for(i=0;i<country_array.length;i++){
		if(country_array[i]!=strCountry){
			eval('document.getElementById(\'country_'+country_array[i]+'\').removeAttribute(\'style\')');
			eval('document.getElementById(\'link_'+country_array[i]+'\').removeAttribute(\'style\')');
		}
	}
*/
	if(eval('document.getElementById(\'year_'+strYear+'\').style.display')=="block"){
		//eval('document.getElementById(\'year_'+strYear+'\').removeAttribute(\'style\')');
		eval('document.getElementById(\'year_'+strYear+'\').style.display="none"');
//		eval('document.getElementById(\'link_'+strYear+'\').removeAttribute(\'style\')');
	}else{
		eval('document.getElementById(\'year_'+strYear+'\').style.display="block"');
//		eval('document.getElementById(\'link_'+strYear+'\').style.backgroundColor="#944b28"');
		
	}
}





/*
+-------------------------------+
|	home page panel setup		|
+-------------------------------¦
|	Developer:	OS				|
+-------------------------------+
*/
function panel_sync(){
	var latestHeight = document.getElementById('latest_events').offsetHeight;
	var upcomingHeight = document.getElementById('upcoming_events').offsetHeight;
	var rightHeight = document.getElementById('right_column').offsetHeight;
	var headHeight = document.getElementById('text_head').offsetHeight;
	//alert(latestHeight+" - "+upcomingHeight+" - "+rightHeight+" - "+headHeight);
	if(latestHeight <rightHeight && upcomingHeight<rightHeight){
		document.getElementById('latest_events').style.height = rightHeight-headHeight-400+"px";
		document.getElementById('upcoming_events').style.height = rightHeight-headHeight-400+"px";
	}else{
		if(latestHeight <upcomingHeight){
			document.getElementById('latest_events').style.height = upcomingHeight+"px";
		}else{
			document.getElementById('upcomingHeight').style.height = latestHeight+"px";
		}
	}
}




