
var Picture = new Array(); // don't change this
var Caption = new Array(); // don't change this
var showHot = false;       // don't change this

Picture[1]  = 'images/graphics/case_manufacturing_2.gif';
Picture[2]  = 'images/graphics/case_real_estate.jpg';
Picture[3]  = 'images/graphics/case_winery.jpg';
Picture[4]  = 'images/graphics/case_nonprofict_museum.jpg';
Picture[5]  = 'images/graphics/case_agriculture.jpg';
Picture[6]  = 'images/graphics/case_fortune_500.jpg';
Picture[7]  = 'images/graphics/case_technology.jpg';
Picture[8]  = 'images/graphics/case_e-commerce_2.jpg';
Picture[9]  = 'images/graphics/case_medical.jpg';

Caption[1]  = '<b>Manufacturing<br />Coach & Equipment</b><br /><br />Our goal was to use visuals to impress upon the viewer the proud tradition and 100 plus year experience Coach & Equipment possesses, suggest niche markets they supply and provide a client list representing both diversity and scale.';
Caption[2]  = '<b>Real Estate<br />Team Moon Real Estate</b><br /><br />We had two major goals in regard to this design, the first focused on the seller and the other the buyer. We needed to represent the seller\'s property in a clean, professional matter in which the property owner would be proud. Second, we needed to present a wealth of useful information to the potential buyer.';
Caption[3]  = '<b>Winery Industry<br />Barrington Cellars</b><br /><br />We feel there is a certain elegance associated with wine, thus we used richer colors and a layout with a more polished look and feel. Various scripting techniques were used to give an easy, yet \'fun\', experience when navigating their selections.';
Caption[4]  = '<b>Museum - Non-Profit<br />Glenn H. Curtiss Museum</b><br /><br />A "Museum Quality" look of the appropriate era integrated with a number of web applications allowing for museum staff to easily manage news, exhibits, collections and gift shop inventory.';
Caption[5]  = '<b>Agriculture<br />Nistock Farms</b><br /><br />This is another example of a design with a clean, simple and professional layout, solid content and user friendly navigation.';
Caption[6]  = '<b>Fortune 500<br />Hitachi of America</b><br /><br />We were asked to do \'something\' revealing to site visitors Hitachi\'s unique position of being a custom solution provider. We accomplished this by utilizing clever visual \'suggestions\' and simple, yet effective, tag lines. A serious of four visuals were created to this end.';
Caption[7]  = '<b>Technology<br />MPR Secure</b><br /><br />Our goal was to visually represent the complexity of network security. We accomplished this be creating a visual that utilizes suggestive imagery in a \'security cycle\' that address all aspects of network security. A very affective means of revealing services offered in a logical and easy presentation.';
Caption[8]  = '<b>E-Commerce<br />Dried Flowers Direct</b><br /><br />This site was designed to encourage trust and comfort. The family farm feel of the site did just that and revenue growth has been "absolutely wonderful".';
Caption[9]  = '<b>Medical<br />Eaves Dental</b><br /><br />For dentistry, we wanted to create a nice, clean, healthy look. The slogan we created is simple and to the point... "It\'s All About Smiling". We also wanted to convey a \'modern\' feel to the site to complement the fact that Eaves Dental has embraced advanced dental technologies.';

var choosen
var tss;
var iss;
var jss = 0;
var pss = Picture.length-1;

var preLoad = new Array();
for (iss = 1; iss < pss+1; iss++){
preLoad[iss] = new Image();
preLoad[iss].src = Picture[iss];}

function control(how){
	if (showHot){
		if (how=="A") jss = 1;
		if (how=="B") jss = 2;
		if (how=="C") jss = 3;
		if (how=="D") jss = 4;
		if (how=="E") jss = 5;
		if (how=="F") jss = 6;
		if (how=="G") jss = 7;
		if (how=="H") jss = 8;
		if (how=="I") jss = 9;

		if (jss > (pss)) jss=1;
		if (jss < 1) jss = pss;
		if (document.all){
			document.images.PictureBox.style.filter="blendTrans(duration=1)";
			document.images.PictureBox.filters.blendTrans.Apply();
		}
		document.images.PictureBox.src = preLoad[jss].src;
		if (document.getElementById) document.getElementById("CaptionBox").innerHTML= Caption[jss];
		if (document.all) document.images.PictureBox.filters.blendTrans.Play();
		var div = document.getElementById("web_development_case_studies");
		div.style.display = "block";
	}
}

function hide_division () {
	var div = document.getElementById("web_development_case_studies");
	div.style.display = "none";
	document.images.PictureBox.src = preLoad[9].src;
}