function rand_number(n)
{
	var x;
	x=Math.round(Math.random()*100);
	x%=n;
	return x;
}

function fn_images()
{
	var i;
	var interval=10000; 
	var img = new Array();


	img[0]='In Good Times, Outsourcing is Good;<br><br>In Bad Times, Outsourcing is GREAT!';
	img[1]='\"An invasion of armies can be resisted,<br> But not an idea whose time has come.\" <br> - Victor Hugo<br> Global Sourcing of Business Processes<br>& IT Functions has arrived !!';
	img[2]='\"Those who don’t learn from history <br> <br>are doomed to repeat it.\"<br> <br> - George Santayana';
	img[3]='The Lean \'Virtual\' Corporation <br>is underway. Manage it.<br>OR<br> <br>It will manage you!';
	img[4]='Keep the Corporate Muscle,<br> <br>Global Source the Fat!';
	img[5]='Failing to Plan Assessment of<br>Global Sourcing of Services<br> is Planning to Fail <br>  <br>  - OCM Corp. Management';
	img[6]='Its not IF, its HOW. <br> <br>If not Now, When? <br>  <br> - OCM Management';
	img[7]='Contact OCM for<br>Thought Leadership on<br>Global Sourcing of<br>Business Processes & IT Functions.';
	img[8]='Contact OCM for<br>Insights & Solutions to<br>Global Sourcing of<br>Business Processes & IT Functions.';
	img[9]='Contact OCM for<br>Economies of Scale, Risk Mitigation,<br>& Value Maximization throughout<br> the Services Sourcing Lifecycle.';
	img[10]='Contact OCM for<br> <br>Long-term & Trust-based <br> <br> Partnership for Global Sourcing.';	
	img[11]='OCM - Your Gateway to <br> <br>Global Sourcing Excellence !';
	img[12]='Evolve, Excel & Enrich <br> <br>with OCM\'s <br> <br>Solutions for Global Sourcing Lifecycle.';
	img[13]='Focus on the Core, <br> Outsource the Non-core.<br> Right Partners & Processes <br> can make all the difference <br> OCM will help you get there!';
	img[14]='Get the FACTS from OCM - <br> <br>Focused, Adaptive, Collaborative, &<br>Transformational Solutions for the<br>Lifecycle of Global Sourcing of Services.';
	img[15]='Dilemma:   In search of <br>Sustainable Competitive Advantage?<br> <br>Solution Step No. 1 -   Evaluation of <br> Global Sourcing of Services with OCM.';
	img[16]='\"The best way to predict the future <br> is to invent it!\"  - Alan Kay<br> <br>Together with OCM Corp, you can...!<br> Before the competition !!';
	img[17]='OCM Corp.- <br> <br>Match Makers, Wedding Planners, <br> & Marriage Counselors <br>for Global Sourcing of Services.';
	img[18]='Consider Getting it Done Outside,<br>With OCM on Your side,<br>To Exploit the Upside, &<br>To Minimize the Downside.';
	img[19]='For Agility in the Global Economy <br> <br>Focus on the Core,<br> <br>Global Source the Non-Core.';
        img[20]='Keep the Core  <br> <br>Global Source the Non-Core !';
        img[21]='It is not the Ownership of Resources,<br>But Control over their Value-Chain<br>that matters to ensure the<br>Price-Performance-Productivity metrics<br> of non-core sourced processes.';
        img[22]='It is not the Ownership of Capabilities,<br><br>But the ability to make<br><br>the most of them that matters.';
        img[23]='Global Sourcing of Services –<br>It’s not just another<br>Procurement Initiative<br><br>But a Strategic Sourcing approach !';
        img[24]='The basis of<br>Sustainable Competitive Advantage<br>Is not Hard Assets but…<br> Intangible Capabilities<br>Irrespective of their ownership !';
	img[25]='Global Sourcing of Services –<br>It’s not just for Fortune 500.<br><br>Especially if<br>You are competing with them !';
        				
	var n_total_images = 26; 	<!-- nombre total d'images (ici 0,1,2 ==> 3) -->

	var i=rand_number(n_total_images); 

	fn.innerHTML=img[i];

	setTimeout("fn_images()",interval);
}