/*
 * Set up onload events for the home page
 */
$(document).ready(function()
{
	initializeTimer();
});


var TIMEPERIOD = 10000;

/*
 * Initialize Timer
 */
function initializeTimer()
{
	window.setInterval('slideText()', TIMEPERIOD);
}

var textcounter = 0;
var MAX = 3;

// Set up list of banner text
textArray = new Array()
textArray[0]='<a href="contactUs.php" title="Discover Opportunity"><span class="bigOrangeFont">Discover Opportunity</span><br/><br/>' +
'<span class="darkGreyFont">We make complex things simple ...</span><br/>' +
'<span class="darkGreyFont">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;' +
'&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;websites, smart software, and beyond</span></a>';
textArray[1]='<a href="services.php#webSolutions" title="Unleash Internet Power"><span class="bigOrangeFont">Unleash Internet Power</span><br/><br/>' +
'<span class="darkGreyFont">Launch a website with professional design ...</span><br/>' +
'<span class="darkGreyFont">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;' +
'&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;' +
'&nbsp;&nbsp;&nbsp;clean, eloquent, with practical perfection</span><br/></a>';
textArray[2]='<a href="services.php#customServices" title="Tailor Technology Services"><span class="bigOrangeFont">Tailor Technology Services</span><br/><br/>' +
'<span class="darkGreyFont">We bring value to your bottom line ...</span><br/>' +
'<span class="darkGreyFont">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;' +
'&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;technical expertise without the jargon </span></a>';
					  
/*
 * Change Banner Text
 */
function slideText()
{
	// Increment counter
	textcounter = textcounter + 1;
	 
	// When at the end, start again
	if(textcounter == MAX) 
	{ 
		textcounter = 0; 
	}

	// Change Banner Text
	$("#bannerText").fadeOut("fast", 
	function(){
		$("#bannerText").html(textArray[textcounter]);
		$("#bannerText").fadeIn(2000);
	});
}


