// Image PreLoader
ImageSwitch = new Array();
ImageSwitch[0] = new Image(); 
ImageSwitch[0].src = "images/xi-web.png";
ImageSwitch[1] = new Image(); 
ImageSwitch[1].src = "images/xi-design.png";
ImageSwitch[2] = new Image(); 
ImageSwitch[2].src = "images/xi-marketing.png";
ImageSwitch[3] = new Image(); 
ImageSwitch[3].src = "images/xi-brand.png";
ImageSwitch[4] = new Image(); 
ImageSwitch[4].src = "images/xi-multimedia.png";
ImageSwitch[5] = new Image(); 
ImageSwitch[5].src = "images/xi-software.png";
ImageSwitch[6] = new Image(); 
ImageSwitch[6].src = "images/xi-taxrefund.png";
ImageSwitch[7] = new Image(); 
ImageSwitch[7].src = "images/xi-welcome.png";

ContentSwitch = new Array();
ContentSwitch[0]='<a href="#" onclick="javascript:IndexSwitch(7);"><img src="js/images/closecircle.png" border="0" align="right"></a><h1>web development</h1><p>At XI Digital we engineer smart, lucid and original concepts for web development allowing you to effectively utilize the internet. Whether it be a simple or complex website, on-line catalogue, on-line store with shopping cart, or an on-line system of any kind; we can help your organization from start to finish.<br><br>XI Digital&acute;s web development solutions provide clients with full control over the configuration and administration of their business systems via the web. Our efforts are focused on creating web application solutions that collaborate with particular processes. </p><p align="right"><a href="services-web" class="readmore">read more</a></p>';

ContentSwitch[1]='<a href="#" onclick="javascript:IndexSwitch(7);"><img src="js/images/closecircle.png" border="0" align="right"></a><h1>graphic design</h1><p>XI Digital&acute;s creative team will work diligently with you to create a unique look for your brand or concept.  We specialize in clean, intuitive, well-structured designs that make strong and lasting impressions.<br><br>From web design to eye popping illustrations, logos and branding, brochure or billboard design, 3-D graphics, mobile design and more. Look to XI Digital to create the impressive and effective look that you are after.</p><p align="right"><a href="services-design" class="readmore">read more</a></p>';

ContentSwitch[2]='<a href="#" onclick="javascript:IndexSwitch(7);"><img src="js/images/closecircle.png" border="0" align="right"></a><h1>internet marketing</h1><p>XI Digital offers current and strategic on-line advertising solutions, from search engine marketing (viral marketing) and social media marketing to SEO (search engine optimization) and more.<br><br>The ever-increasing volume of businesses on the web today has created more competition and higher levels of overlooked and undetected websites then ever before. Complex, more sophisticated internet marketing strategies are required today if a business is to stand a chance of attaining and maintaining a predominant presence on-line.</p><p align="right"><a href="services-marketing" class="readmore">read more</a></p>';

ContentSwitch[3]='<a href="#" onclick="javascript:IndexSwitch(7);"><img src="js/images/closecircle.png" border="0" align="right"></a><h1>brand development</h1><p>The symbol for a brand is its trademark. The brand itself is all the tangible and intangible attributes that are the essence of a company or organization, its heart and soul. The brand is the foundation on which every customer experience with the company should be built. <br><br>The branding process aligns a company&acute;s business plan with its products and services. When properly managed, branding creates value and influence. Your brand is ultimately your reputation. It begins with the promise you make, and therefore, the promise you must keep.</p><p align="right"><a href="services-brand" class="readmore">read more</a></p>';

ContentSwitch[4]='<a href="#" onclick="javascript:IndexSwitch(7);"><img src="js/images/closecircle.png" border="0" align="right"></a><h1>multimedia presentations</h1><p>XI Digital offers a full suite of exciting multimedia tools to assist your organizations&acute; communication and marketing efforts. Allow us to produce the cutting edge presentation that will deliver the effect you are after.</p><p align="right"><a href="services-multimedia" class="readmore">read more</a></p>';

ContentSwitch[5]='<a href="#" onclick="javascript:IndexSwitch(7);"><img src="js/images/closecircle.png" border="0" align="right"></a><h1>software development</h1><p>XI Digital has the &acute;know how&acute; and experience when it comes to development of custom web software. Thoroughly analyzing your business needs, industry and product requirements, we deliver tailored cost-competitive, scalable and robust solutions.<br><br>From customized content management systems and complex e-commerce/shopping cart systems, to on-line ordering and inventory systems or management software.</p><p align="right"><a href="services-software" class="readmore">read more</a></p>';

ContentSwitch[6]='<a href="#" onclick="javascript:IndexSwitch(7);"><img src="js/images/closecircle.png" border="0" align="right"></a><h1>government incentives</h1><p>To many larger business owners who are about to develop an on-line presence for the first time in their companies&acute; history, the task can easily be looked upon as expensive and tiring.<br><br>XI Digital wants to help you in getting it done cost free and even getting paid for your time... by offering you turn key government funding solutions.</p><p align="right"><a href="services-taxrefund" class="readmore">read more</a></p>';

ContentSwitch[7]='<h1>welcome to<br /><span class="smallblue">XI DIGITAL</span></h1><p>XI Digital offers cutting edge custom solutions for your strategic, creative and technological needs.</p><p>Our services include business development and website engineering as well as multimedia presentations and on-line marketing strategies.</p><p>Offering an impressive range of e-business solutions - XI Digital&rsquo;s  purpose is to help our clients understand and harness the power and  possibilities of technology and the internet.</p><p><strong>Are you ready to e<span style="color: rgb(255, 255, 255);">x</span>perience <span style="color: rgb(255, 255, 255);">i</span>nnovation?</strong></p><p align="right"><a href="company.html" class="readmore">read more</a></p>';

function IndexSwitch(IndArray)
{
	$("#home_illustration").fadeOut(300);
	$("#home_text").fadeOut(300, function(){
		document.getElementById("home_illustration_pic").src=ImageSwitch[IndArray].src;
		document.getElementById('home_text').innerHTML = ContentSwitch[IndArray];
		$("#home_illustration").fadeIn(300);
		$("#home_text").fadeIn(300);
	});
}