//=======================================================================================================
//-------------------------------------------------------------------------------------------------------
//	Custom Javascript functions
//-------------------------------------------------------------------------------------------------------
//=======================================================================================================
function expand(param, param2)
{
	var can_show = param.style.display=="none";
		param.style.display	=(can_show)?"block":"none";
		//param2.src			=(can_show)? "/images/minus.gif":"/images/plus.gif";
}

function expandPortfolio(show_hide_content, plus_minus_image)
{
	var can_show = show_hide_content.style.display=="none";
		show_hide_content.style.display	=(can_show)?"block":"none";
		plus_minus_image.src			=(can_show)? "/images/minus.gif":"/images/plus.gif";
}


//for /how-we-work/ora-process.php
function ora_process(q){
	var thediv = 'process_'+q;
	document.getElementById('right_process').innerHTML = document.getElementById(thediv).innerHTML;
}