/*
 +---------------------------------------------------------+
 | Ad Simple                 Copyright www.YugDesign.com   |
 +---------------------------------------------------------+
 | This program may be used and hosted free of charge by   |
 |anyone for personal purpose as long as this copyright    |
 |notice remains intact.                                   |
 +---------------------------------------------------------+
*/

function print_banner() {
    var img_width = "150";
    var img_height = "500";
    var img_title = "Click Here";
    
    var ad=new Array()
    //insert here your images src
    ad[0]='http://www.communityexplore.com/banners/simpleimprovementsbanner.jpg';
    ad[1]='http://www.communityexplore.com/banners/leonardfuelsbanner.jpg';
    ad[2]='http://www.communityexplore.com/banners/tayriverreflectionsbanner.jpg';
    ad[3]='http://www.communityexplore.com/banners/heritage-banner.gif';
    ad[4]='http://www.communityexplore.com/banners/picturesperthbanner.jpg';
    ad[5]='http://www.communityexplore.com/banners/blairandsonbanner.jpg';
    ad[6]='http://www.communityexplore.com/banners/herlehyhomebuildingcentreb.jpg';
    ad[7]='http://www.communityexplore.com/banners/cobrapoolsbanner.jpg';
   
    var links=new Array()
    //insert here your links
    links[0]='http://www.communityexplore.com/banners/test/ccount/click.php?id=8';
    links[1]='http://www.communityexplore.com/banners/test/ccount/click.php?id=9';
    links[2]='http://www.communityexplore.com/banners/test/ccount/click.php?id=10';
    links[3]='http://www.communityexplore.com/banners/test/ccount/click.php?id=11';
    links[4]='http://www.communityexplore.com/banners/test/ccount/click.php?id=12';
    links[5]='http://www.communityexplore.com/banners/test/ccount/click.php?id=13';
    links[6]='http://www.communityexplore.com/banners/test/ccount/click.php?id=35';
    links[7]='http://www.communityexplore.com/banners/test/ccount/click.php?id=36';

    var xy=Math.floor(Math.random()*ad.length);
    document.getElementById('sidebanner_test').innerHTML = '<a href="'+links[xy]+'" target="_blank"><img src="'+ad[xy]+'" width="'+img_width+'" height="'+img_height+'" alt="'+img_title+'"></a>';
}

print_banner();
setInterval('print_banner()', 10000);

