

var featuredImages = new Array() // array of images; add new ones as needed

featuredImages[0] = "http://www.goodeggwebstudio.com/images/portfolio/ggn-thumb.jpg"; 
featuredImages[1] = "http://www.goodeggwebstudio.com/images/portfolio/up_thumb.gif"; 
featuredImages[2] = "http://www.goodeggwebstudio.com/images/portfolio/ghcim_thumb.jpg";
featuredImages[3] = "http://www.goodeggwebstudio.com/images/portfolio/daisyhill_thumb.jpg"; 

var featuredTitle = new Array() // array of titles; match new ones w Images

featuredTitle[0] = "Go Green NOLA";
featuredTitle[1] = "UP/Unique Products";
featuredTitle[2] = "Center for Integrative Medicine";
featuredTitle[3] = "Daisy Hill Market";

var featuredInfo = new Array() // array of info; match new ones w Images

featuredInfo[0] = "For this site, we did just about everything! GoGreenNOLA.org highlights our ability to create an easy-to-navigate site with an intuitive information architecture filled with scannable content and visually pleasing page layouts. ";
featuredInfo[1] = "Up/Unique Products needed an e-commerce website that fit into the funky and fun design of their artsy products. We used Joomla to build the site, hand-coded the layout of all the pages and help the client define the structure of the website.";
featuredInfo[2] = "The Center for Integrative Medicine site is an informational and educational website. We worked with the Center's practitioners and staff to create a website that informs and educates patients about the programs and services available at the Center. ";
featuredInfo[3] = "Daisy Hill Market is a brochure website for a small business. We worked closely with the clients to create a brochure website that highlights their unique, gourmet take on the traditional convenience store. "

var featuredLink = new Array() // array of info; match new ones w Images

featuredLink[0] = "http://www.gogreennola.org/";
featuredLink[1] = "http://www.shopgreenneworleans.com";
featuredLink[2] = "http://www.GreenwichIntegrativeMedicine.org";
featuredLink[3] = "http://www.daisyhillmarket.com/"


var p = featuredImages.length;

var whichOne = Math.round(Math.random()*(p-1));

function showFeaturedImage(){
	document.write('<img src="'+ featuredImages[whichOne]+'" alt="featured site"/>');
	}
	
function showFeaturedTitle(){
	document.write( featuredTitle[whichOne] );
}

function showFeaturedLink(){
	document.write('<a href="'+ featuredLink[whichOne]+'">');
	}

function showFeaturedInfo(){
	document.write( featuredInfo[whichOne] );
}


