<!-- 

// ARRAY FUNCTION

function makeArray(len) {

        for (var i= 0; i < len; i++) this[i] = null;
        this.length = len;
        }

// CREATE ARRAY
        
var quote = new Array();

quote[0] = '<p>Opus Capital is extremely entrepreneur-friendly. They have a healthy appreciation of what it really takes to get a business up and running because they\'ve done it themselves.</p><p class=\"attrib\">Yuval Koren<br />CEO & Founder<br />Eye-Fi</p>';

quote[1] = '<p>The partners at Opus are extremely well connected in the valley and the industry. They never hesitate to use their networks to help the companies in which they invest. Whether these companies need mentors who have run similar businesses, or business partners to help get them to market faster, the Opus partners are great catalysts.</p><p class=\"attrib\">Fred Rosenzweig<br />President<br />EFI</p>';

quote[2] = '<p>With Opus you get operational insight without the ego&mdash;deep investing experience and tremendous real-world operational know-how. Opus Capital is the smart money.</p><p class=\"attrib\">Kevin Brown<br />CEO<br /> Kidaro</p>';

quote[3] = '<p>Through their contacts we\'ve made some really significant partnerships for the company. It\'s hard to find any venture firms better than Opus.</p><p class=\"attrib\">Eric Sirkin<br />President & Founder<br />BUZ Interactive</p>';

quote[4] = '<p>The Opus partners have a long term view. They are here to stay, to do what it takes to help us build a successful company.</p><p class=\"attrib\">Anthony Ley, Chairman,<br />CEO & President<br />Harmonic</p>';

quote[5] = '<p>We had multiple term sheets but chose Opus because they really got us better than anyone else.</p><p class=\"attrib\">Jaideep Singh<br />CEO & Founder<br />Spock</p>';

quote[6] = '<p>As an Israeli-based company, we sought out Opus as an investor, knowing the tremendous value they\'d provide.</p><p class=\"attrib\">Arnon Diskin<br />CEO & Founder<br />C-nario</p>';

quote[7] = '<p>More than anything we value the experience Opus brings in running large, complex technology businesses, along with a deep understanding of marketing to growing segments.</p><p class=\"attrib\">Vijay Parmar<br />President, CEO & <br />Co-Founder<br />GainSpan Corporation</p>';

quote[8] = '<p>Our relationship with Opus is a true partnership&mdash; collaborative and supportive, and based on trust.</p><p class=\"attrib\">Scott Mitic<br />CEO & Co-Founder<br />TrustedID</p>';


// RANDOM NUMBER GENERATOR

function rand(n) {

        seed = (0x015a4e35 * seed) % 0x7fffffff;
        return (seed >> 16) % n;
        }
        
        var now = new Date();
        var seed = now.getTime() % 0xfffffff


function nospam(user,domain) {
	locationstring = "mailto:" + user + "@" + domain;
	window.location = locationstring;
}

// DROPDOWN MENUS 

function dropteam() {
	document.getElementById('sub-team').style.visibility='visible';
	document.getElementById('sub-invest').style.visibility='hidden';
	document.getElementById('sub-news').style.visibility='hidden';
	}

function dropinvest() {
	document.getElementById('sub-team').style.visibility='hidden';
	document.getElementById('sub-invest').style.visibility='visible';
	document.getElementById('sub-news').style.visibility='hidden';
	}

function dropnews() {
	document.getElementById('sub-team').style.visibility='hidden';
	document.getElementById('sub-invest').style.visibility='hidden';
	document.getElementById('sub-news').style.visibility='visible';
	}

function nodrop() {
	document.getElementById('sub-team').style.visibility='hidden';
	document.getElementById('sub-invest').style.visibility='hidden';
	document.getElementById('sub-news').style.visibility='hidden';	
	}


// -->
