// MouseOn 
 				homeon = new Image(120, 31);
				homeon.src = "http://www.noventivc.com/images/n_home_on.jpg";  
 				abouton = new Image(120, 30);
				abouton.src = "http://www.noventivc.com/images/n_about_on.jpg";  
				portfolioon = new Image(120, 30);
				portfolioon.src = "http://www.noventivc.com/images/n_portfolio_on.jpg";
				teamon = new Image(120, 30);
				teamon.src = "http://www.noventivc.com/images/n_team_on.jpg";
				newson = new Image(120, 30);
				newson.src = "http://www.noventivc.com/images/n_news_on.jpg";
				contacton = new Image(120, 30);
				contacton.src = "http://www.noventivc.com/images/n_contact_on.jpg";
				submiton = new Image(120, 30);
				submiton.src = "http://www.noventivc.com/images/n_submit_on.jpg";
				
			// MouseOff
				homeoff = new Image(120, 31);
				homeoff.src = "http://www.noventivc.com/images/n_home.jpg";
				aboutoff = new Image(120, 30);
				aboutoff.src = "http://www.noventivc.com/images/n_about.jpg";  
				portfoliooff = new Image(120, 30);
				portfoliooff.src = "http://www.noventivc.com/images/n_portfolio.jpg";
				teamoff = new Image(120, 30);
				teamoff.src = "http://www.noventivc.com/images/n_team.jpg";
				newsoff = new Image(120, 30);
				newsoff.src = "http://www.noventivc.com/images/n_news.jpg";
				contactoff = new Image(120, 30);
				contactoff.src = "http://www.noventivc.com/images/n_contact.jpg";
				submitoff = new Image(120, 30);
				submitoff.src = "http://www.noventivc.com/images/n_submit.jpg";

// Quotes
 q_homeon = new Image(107, 170);
 q_homeon.src = "http://www.noventivc.com/images/q_home.gif";
 q_abouton = new Image(107, 170);
 q_abouton.src = "http://www.noventivc.com/images/q_about.gif";
 q_portfolioon = new Image(107, 170);
 q_portfolioon.src = "http://www.noventivc.com/images/q_portfolio.gif";
 q_teamon = new Image(107, 170);
 q_teamon.src = "http://www.noventivc.com/images/q_team.gif";
 q_newson = new Image(107, 170);
 q_newson.src = "http://www.noventivc.com/images/q_news.gif";
 q_contacton = new Image(107, 170);
 q_contacton.src = "http://www.noventivc.com/images/q_contact.gif";
 q_submiton = new Image(107, 170);
 q_submiton.src = "http://www.noventivc.com/images/q_submit.gif";
				
				// image-swapping functions
function imgOn(imgName) {	
  if (document.getElementById) {
    document.getElementById(imgName).src = eval(imgName + "on.src");

  }
}

function imgOff(imgName) {
  if (document.getElementById) {
    document.getElementById(imgName).src = eval(imgName + "off.src");
  }
}

function toggleSub(submenu) {
    if (document.getElementById(submenu).style.display == 'none') {
        document.getElementById(submenu).style.display = 'block'
    } else {
        document.getElementById(submenu).style.display = 'none'
    }
}

var quotes=new Array();

quotes[0]="http://www.noventivc.com/images/q_home.gif";
quotes[1]="http://www.noventivc.com/images/q_about.gif";
quotes[2]="http://www.noventivc.com/images/q_portfolio.gif";
quotes[3]="http://www.noventivc.com/images/q_team.gif";
quotes[4]="http://www.noventivc.com/images/q_news.gif";
quotes[5]="http://www.noventivc.com/images/q_contact.gif";
quotes[6]="http://www.noventivc.com/images/q_submit.gif";

