 function start()
    {
      // JS setup:

      // Banner with simultaneous emergence and fade-out:

      // Create the horizontal banner, bound to "parent1" div element,
      // 390 pixels wide, with height of 90 pixels, background color equal
      // to #FF9900, batch rotation interval is equal to 5000 milliseconds
      // (5 seconds):
      // We have chosen 10 seconds here i.e. 10000
	  
      var fb_h = new FadingBanner("parent1", "horizontal", 692, 226, "#FFFFFF", 10000);

      // Add an image 'h-api-competition.jpg', which is: width = 130px
      // and height = 90px, and it will link to 'http://www.dating-genie.com/Feature/Vista/'.
      // Image is assigned to the batch number 0:
      //http://www.dating-genie.com/index.php?m=account_register link here if visitor or # for none
      fb_h.add(0, "http://www.dating-genie.com/banner_main/1.jpg", 692, 226, "#");

      // Add more images/links to 0th batch:
      //
      	  fb_h.add(1, "http://www.dating-genie.com/banner_main/2.jpg", 692, 226, "#");
      	  fb_h.add(2, "http://www.dating-genie.com/banner_main/3.jpg", 692, 226, "#");
	  fb_h.add(3, "http://www.dating-genie.com/banner_main/4.jpg", 692, 226, "#");
	  fb_h.add(4, "http://www.dating-genie.com/banner_main/5.jpg", 692, 226, "#");
	  fb_h.add(5, "http://www.dating-genie.com/banner_main/6.jpg", 692, 226, "#");
	  fb_h.add(6, "http://www.dating-genie.com/banner_main/7.jpg", 692, 226, "#");
	  fb_h.add(7, "http://www.dating-genie.com/banner_main/8.jpg", 692, 226, "#");
      // Add a single wide image to the batch number 1:
      //
//      fb_h.add(1, "http://www.dating-genie.com/banner_main/blank.jpg", 692, 226, "#");

      // Start banner operation:
      fb_h.start();
    
    }





