// JavaScript Document
var url_vector = new Array(3);
var txt_vector = new Array(3);
var banner_vector = new Array(3);
var description_vector = new Array(3);
var read_vector = new Array(3);
var counter = 0;
var url = "";
 
url_vector[0] = "http://www.aquans.net/services.php#im";
url_vector[1] = "http://www.aquans.net/services.php#wd";
url_vector[2] = "http://www.aquans.net/services.php#at";
 
 
 
txt_vector[0] = "Internet Marketing";
txt_vector[1] = "Web Design";
txt_vector[2] = "Additional Tools";



description_vector[0] = "Internet marketing, also referred to as i-marketing, web marketing, online marketing, or eMarketing, is the marketing of products or services over Internet... Search marketing continues to dominate, grabbing 40 percent of the total online ad spending as of 2009... Let us help you take advantage of this Rapidly and Continued Growth of Online Advertising!";
description_vector[1] = "Web Design is the skill of creating presentations of content. The process of designing Web pages, Web sites, Web applications or multimedia for the Web, may utilize multiple disciplines, such as animation, authoring, communication design, corporate identity, graphic design, human-computer interaction, information architecture, interaction design, marketing, photography, search engine optimization and typography.";
description_vector[2] = "At Aqua Net Solutions we understand the huge amount of information on internet, and so many different facets to capture and dissimulate your presence. We like to pride our self for thinking outside the box to help you achieve what has not been achieved. We spend a lot of time doing just this while looking for new ways to help our clients.";

 
if(document.images){
  for(i = 0; i < 3; i++)
  {
    banner_vector[i] = new Image(62,12);
    banner_vector[i] = "Img/banner/" + (i+1) + ".png";
  }
}
 
 
function changeBanner(){
    if(counter > 2)
      counter = 0;
document.getElementById("banner").innerHTML = "<img src="+banner_vector[counter]+" title="+txt_vector[counter]+" />"
url = url_vector[counter];
document.getElementById("texto").innerHTML = txt_vector[counter];
document.getElementById("descripcion").innerHTML = description_vector[counter];
document.getElementById("banner_peq_"+(counter+1));
    if (counter >= 1)
document.getElementById("banner_peq_"+counter);     
      counter++;
    }
 
 
timer = setInterval("changeBanner()", 6000);
window.onload = changeBanner;