/*Portfolio*/
img = new Array();
dsc = new Array();

// Images and descriptions
img[0] = "beqa.jpg";
dsc[0] = "<h1>Beqa Lagoon Resort</h1><p>Redesign of Beqa Lagoon web site, a luxury resort in Fiji (current web site is www.beqalagoonresort.com).</p><span class=\"m\"><span class=\"left\"></span><img src=\"/_works/fav-beqa.gif\" width=\"16\" height=\"16\"><a href=\"http://beqa.logistetica.com/\" target=\"_blank\">beqa.logistetica.com</a></span>";

img[1] = "ews.jpg";
dsc[1] = "<h1>eWordSolutions</h1><p>eWordSolutions is an industry leader in transcription services based in Montrose, CA. Web site is designed promarily for business clients and features clean and simple user interface and is&nbsp;implemented using ExpressionEngine, a leading CMS platform.</p><span class=\"m\"><span class=\"left\"></span><img src=\"/_works/fav-ews.ico\" width=\"16\" height=\"16\"><a href=\"http://www.ewordsolutions.com/\" target=\"_blank\">www.ewordsolutions.com</a></span>";

img[2] = "adcap.jpg";
dsc[2] = "<h1>AdCapital Industries</h1><p>AdCapital Industries is a company in Vancouver, Canada, which develops a revolutionary emission reduction technology that reduces vehicle emission NOx by 97%. The goal of the web site is to attract investors and to update the public about company&#39;s projects.</p><span class=\"m\"><span class=\"left\"></span><img src=\"/_works/fav-icon-ad.gif\"><a href=\"http://www.adcapitalindustries.com/\" target=\"_blank\">www.adcapitalindustries.com</a></span>";

img[3] = "sympowerco.jpg";
dsc[3] = "<h1>SymPowerco Corp</h1><p>SymPowerco is an energy technology company focused on the design and development of clean and practical power and energy solutions. The website is designed for the purpose of getting exposure for the company&#39;s fuel cell technology as well as communicating with its current and prospective investors.</p><span class=\"m\"><span class=\"left\"></span><img src=\"/_works/fav-sym.ico\"><a href=\"http://www.sympowercocorp.com/\" target=\"_blank\">www.sympowercocorp.com</a></span>";

img[4] = "concretoydiseno.jpg";
dsc[4] = "<h1>Concreto y Diseno Arquitectonico</h1><p>CDA is an architectural design and construction company in Mexico with U.S. investments. Primary goal of the web site is to showcase company&#39;s past and current projects, to reach out to prospective clients and to communicate with current client, partners and investors.</p><span class=\"m\"><span class=\"left\"></span><img src=\"/_works/fav-cda.ico\"><a href=\"http://www.cdamx.com/\" target=\"_blank\">www.cdamx.com</a></span>";

img[5] = "fimainc.jpg";
dsc[5] = "<h1>FIMA Inc.</h1><p>FIMA Inc. is a public company, which specializes in all phases of discovery and exploration land development in the emerging markets of Latin America. The site is designed to attract new markets, new partners, create a stronger image, as well as enhance communications company&#39;s external communications.</p><span class=\"m\"><span class=\"left\"></span><img src=\"/_works/fav-fim.ico\"><a href=\"http://www.fimadevelopmentinc.com/\" target=\"_blank\">www.fimadevelopmentinc.com</a></span>";

img[6] = "choffmann.jpg";
dsc[6] = "<h1>C. Hoffmann Communications</h1><p>This client is an investor relations firm and website&rsquo;s objective is to bring exposure to their client companies as well as attract new clients.</p><span class=\"m\"><span class=\"left\"></span><img src=\"/_works/fav-chc.ico\"><a href=\"http://www.choffmanncommunications.com/\" target=\"_blank\">choffmanncommunications.com</a></span>";

img[7] = "hardesty.jpg";
dsc[7] = "<h1>Hardesty & Associates, Inc.</h1><p>Hardesty & Associates is national general contracting corporation specializing in tenant improvements, located in Orange County, California. The web site is designed as a tool for promoting the company&#39;s services and for enhancing communications with clients, partners, prospective employees and the community.</p><span class=\"m\"><span class=\"left\"></span><img src=\"/_works/fav-ha.ico\"><a href=\"http://www.hardestyassociates.com/\" target=\"_blank\">www.hardestyassociates.com</a></span>";

img[8] = "bradryer.jpg";
dsc[8] = "<h1>Bra Dryer</h1><p>Bra Dryer is a patent pending appliance for drying expensive bras. Logistetica was involved in&nbsp;making 3D visualization of this device as well as designing its web site.</p><span class=\"m\"><span class=\"left\"></span><img src=\"/_works/fav-blank.gif\"><a href=\"http://www.bradryer.com/\" target=\"_blank\">www.bradryer.com</a></span>";

img[9] = "hdmtcrm.jpg";
dsc[9] = "<h1>HDMT CRM</h1><p>HDMT CRM is a proprietary Customer Relationship Management for TriStar Financial Services. HDMR CRM features an electronic signature module similar to DocuSign. This project's UI may not be publicly displayed per agreement with our client.</p><span class=\"m\"><span class=\"left\"></span><img src=\"/_works/fav-hdmt.gif\"><a href=\"http://www.hdmtcrm.com/\" target=\"_blank\">www.hdmtcrm.com</a></span>";

//img[!] = "";
//dsc[!] = "<h1></h1><p></p><span><span class=\"left\"></span></span>";

var i;
max = img.length-1;

function imageShower(nav){
	if(i == null){ i = -1 }
	if(nav == 'l') { if(i==0){ i = max } else { i-- } }
	if(nav == 'r') { if(i==max) { i = 0 } else { i++ } }
	$("div#showcase").slideDown(1500);
	objImage = new Image();
	objImage.src = '/_works/'+img[i];
	objImage.onload = function(e) {
		img_height = objImage.height;
		$("div#showcase").animate({ height: img_height + 'px' }, 1500);
		$("div#showcase").html('<img src="'+objImage.src+'" style="display:none" id="showcase-img" />');
		setTimeout('$("img#showcase-img").fadeIn(1500)', 2000);
		$("div#showdesc").html(dsc[i]);
	}
}


$(document).ready(function(){
	imageShower('r');
	$("img#sc-nav-l").bind("click", function(){ imageShower('l') });
	$("img#sc-nav-r").bind("click", function(){ imageShower('r') });
});
