// JavaScript Document

var max1 = 59;
var max2 = 64;
var max3 = 43;

index1 = Math.round(Math.random() * max1);	
index2 = Math.round(Math.random() * max2);	
index3 = Math.round(Math.random() * max3);	

array1 = new Array("implement", "utilize", "integrate", "streamline", "optimize", "evolve", "transform", "embrace", 
"enable", "orchestrate", "leverage", "reinvent", "aggregate", "architect", "enhance", "incentivize", "morph", "empower", 
"envisioneer", "monetize", "harness", "facilitate", "seize", "disintermediate", "synergize", "strategize", "deploy", 
"brand", "grow", "target", "syndicate", "synthesize", "deliver", "mesh", "incubate", "engage", "maximize", "benchmark", 
"expedite", "reintermediate", "whiteboard", "visualize", "repurpose", "innovate", "scale", "unleash", "drive", "extend", 
"engineer", "revolutionize", "generate", "exploit", "transition", "e-enable", "iterate", "cultivate", "matrix", 
"productize", "redefine", 
"recontextualize");

array2 = new Array("clicks-and-mortar", "value-added", "vertical", "proactive", "robust", "revolutionary", "scalable", 
"leading-edge", "innovative", "intuitive", "strategic", "e-business", "mission-critical", "sticky", "one-to-one", 
"24/7", "end-to-end", "global", "B2B", "B2C", "granular", "frictionless", "virtual", "viral", "dynamic", "24/365", 
"best-of-breed", "killer", "magnetic", "bleeding-edge", "web-enabled", "interactive", "dot-com", "sexy", "back-end", 
"real-time", "efficient", "front-end", "distributed", "seamless", "extensible", "turn-key", "world-class", 
"open-source", "cross-platform", "cross-media", "synergistic", "bricks-and-clicks", "out-of-the-box", "enterprise", 
"integrated", "impactful", "wireless", "transparent", "next-generation", "cutting-edge", "user-centric", "visionary", 
"customized", "ubiquitous", "plug-and-play", "collaborative", "compelling", "holistic", "rich");

array3 = new Array("synergies", "web-readiness", "paradigms", "markets", "partnerships", "infrastructures", "platforms", 
"initiatives", "channels", "eyeballs", "communities", "ROI", "solutions", "e-tailers", "e-services", "action-items", 
"portals", "niches", "technologies", "content", "vortals", "supply-chains", "convergence", "relationships", 
"architectures", "interfaces", "e-markets", "e-commerce", "systems", "bandwidth", "infomediaries", "models", 
"mindshare", "deliverables", "users", "schemas", "networks", "applications", "metrics", "e-business", "functionalities", 
"experiences", "web services", "methodologies");

function terminology(){
    
	index1 = Math.round(Math.random() * max1);	
	index2 = Math.round(Math.random() * max2);	
	index3 = Math.round(Math.random() * max3);	
	var term = array1[index1] + " " + array2[index2] + " " + array3[index3];
	return term;
}

function runIt() {
      $("#terminology").html(terminology());
      $("#terminology").fadeIn(4000);
      $("#terminology").fadeOut(4000, runIt);
}
