// JavaScript Document
function bannerSetup()
      {
     // 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):
        
        var fb_h = new FadingBanner("munny_holder", "horizontal", 283, 100, 
            "#fff", 2000);

       // Add an image 'h-api-competition.jpg', which is: width = 130px
       // and height = 90px, 
       // and it will link to 'http://www.codeproject.com/Feature/Vista/'.
       // Image is assigned to the batch number 0:
        
        /*fb_h.add(0, "http://www.kidrobot.com/images/banners/january/TagTeamDunny_EventBanner.jpg", 307, 100, 
            "http://www.kidrobot.com/content.cfm?section=tagTeam");*/

        // Add images/links to var fb_h batch:
       	
			fb_h.add(0, "images/homepage/Video1_Right.jpg", 283, 100, "?p=video");
			
			fb_h.add(1, "images/homepage/Video2_Right.jpg", 283, 100, "?p=video");
			
			fb_h.add(2, "images/homepage/Video3_Right.jpg", 283, 100, "?p=video");
			
		// Add images/links to var fb_h2 batch:

        // Start banner operation:
        fb_h.start();
      }