var mainImage=new Array();
mainImage[0]="<img alt='Sharkey's Large Image' src='SharkeysLarge.jpg'>";
mainImage[1]="<img alt='Pyrocap Large Image' src='PyrocapLarge.jpg'>";
mainImage[2]="<img alt='OdorGo Large Image' src='OdorGoLarge.jpg'>"; 
mainImage[3]="<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0' width='622' height='339' id='AirmovingFlash' align='left'><param name='allowScriptAccess' value='sameDomain' /><param name='allowFullScreen' value='false' /><param name='movie' value='AirmovingFlash.swf' /><param name='loop' value='false' /><param name='quality' value='high' /><param name='bgcolor' value='#ffffff' />	<embed src='AirmovingFlash.swf' loop='false' quality='high' bgcolor='#ffffff' width='622' height='339' name='AirmovingFlash' align='left' allowScriptAccess='sameDomain' allowFullScreen='false' type='application/x-shockwave-flash' pluginspage='http://www.adobe.com/go/getflashplayer' />";
mainImage[4]="<img alt='Riptide Large Image' src='RiptideLarge.jpg'>";
mainImage[5]="<img alt='AlainaDesign Large Image' src='AlainaDesignLarge.jpg'>";

var imageText=new Array();
imageText[0]="<h3>Sharkey's Menu Set Design<p><em>Client:<\/em> Sharkey's Wing and Rib Joint<p><em>Info:<\/em> Sharkey's Wing and Rib Joint is a local chain restaurant and bar. They have a lengthy menu, previously ten pages in length, I organized it into a convenient trifold design. My goal was to create a design that was as easy for the user as possible, while also communicating the fun, bold atmosphere of the restaurant. A drink menu is also in progress.";
imageText[1]="<h3>Pyrocap B-136 Website<p><em>Client:<\/em> J.C. International<p><em>Info:<\/em> A small website selling a fire suppressant product called Pyrocap B-136. The website has a very clean and organized look, while still incorporating the powerful firey colors.";
imageText[2]="<h3>OdorGo Website<p><em>Client:<\/em> J.C. International<p><em>Info:<\/em> OdorGo is another product sold by J.C. International. The website has a similar look to Pyrocap B-136, except green, as the a main highlight of the product is it's environmental friendliness.";
imageText[3]="<h3>AirMoving Solutions Slideshow<p><em>Client:<\/em> Moog Components Group<p><em>Info:<\/em> The Air Moving Solutions Slideshow was a facelift for a slideshow from a past acquisition. It has a new Moog feel, and will be used for future tradeshows.";
imageText[4]="<h3>RIPTIDE Brochure<p><em>Client:<\/em> Preferred Behavioral Health of New Jersey<p><em>Info:<\/em> Preferred Behavioral Health, is a non-profit organization in New Jersey. Their RIPTIDE is a program for substance abusing adolescents. The brochure is mainly used as an informative guide. Therefore, I tried to give the reader a sense of hope and professionalism though the blue and yellow color scheme and uplifting imagery.";
imageText[5]="<h3>AlainaDesign.com<p><em>Info:<\/em> AlainaDesign.com was my previous portfolio site. I began my web design endeavors with Flash and Actionscript(backwards I know, but it's making learning everything else a whole lot easier). I've included it show illustrate my flash capabilities.";

var imageDivID="image";
var textDivID="text";

function newImage(index){
	var imageDiv=document.getElementById(imageDivID);
	var textDiv=document.getElementById(textDivID);
	
	imageDiv.innerHTML=mainImage[index];
	textDiv.innerHTML=imageText[index];
	
}

function preloader(){
LgImage1 = new Image
LgImage1.src = "SharkeysLarge.jpg";
LgImage2 = new Image
LgImage2.src = "PyrocapLarge.jpg";
LgImage3 = new Image
LgImage3.src = "OdorGoLarge.jpg";
LgImage4 = new Image
LgImage4.src = "RiptideLarge.jpg";
LgImage5 = new Image
LgImage5.src = "AlainaDesignLarge.jpg";
}