

var ads = new Array();

ads[2] = '<img src="../images/flash3.jpg" width="902" height="238" USEMAP="#currencypairs" BORDER=0 alt="Turn your unwanted items into CASH"><MAP NAME="currencypairs"><AREA SHAPE=POLY COORDS="0,0,630,0,629,157,572,156,572,186,0,186,0,0,0,0" HREF="ebay-selling/index.html"  ALT="We provides highly professional ebay selling services."  TARGET="_blank"><AREA SHAPE=RECT COORDS="576,160,589,177" HREF="javascript:rotateback();"  ALT=""><AREA SHAPE=RECT COORDS="589,160,600,177" HREF="javascript:pausebanner();" ALT=""><AREA SHAPE=RECT COORDS="600,160,613,177" HREF="javascript:rotateforward();"  ALT=""></MAP>';
ads[1] = '<img src="../images/flash3.jpg" width="902" height="238" USEMAP="#currencypairs" BORDER=0 alt="Turn your unwanted items into CASH"><MAP NAME="currencypairs"><AREA SHAPE=POLY COORDS="0,0,630,0,629,157,572,156,572,186,0,186,0,0,0,0" HREF="ebay-selling/index.html"  ALT="We provides highly professional ebay selling services."  TARGET="_blank"><AREA SHAPE=RECT COORDS="576,160,589,177" HREF="javascript:rotateback();"  ALT=""><AREA SHAPE=RECT COORDS="589,160,600,177" HREF="javascript:pausebanner();" ALT=""><AREA SHAPE=RECT COORDS="600,160,613,177" HREF="javascript:rotateforward();"  ALT=""></MAP>';
ads[0] = '<img src="../images/flash3.jpg" width="902" height="238" USEMAP="#currencypairs" BORDER=0 alt="Turn your unwanted items into CASH"><MAP NAME="currencypairs"><AREA SHAPE=POLY COORDS="0,0,630,0,629,157,572,156,572,186,0,186,0,0,0,0" HREF="ebay-selling/index.html"  ALT="We provides highly professional ebay selling services."  TARGET="_blank"><AREA SHAPE=RECT COORDS="576,160,589,177" HREF="javascript:rotateback();"  ALT=""><AREA SHAPE=RECT COORDS="589,160,600,177" HREF="javascript:pausebanner();" ALT=""><AREA SHAPE=RECT COORDS="600,160,613,177" HREF="javascript:rotateforward();"  ALT=""></MAP>';
ads[3] = '<img src="../images/flash3.jpg" width="902" height="238" USEMAP="#currencypairs" BORDER=0 alt="Turn your unwanted items into CASH"><MAP NAME="currencypairs"><AREA SHAPE=POLY COORDS="0,0,630,0,629,157,572,156,572,186,0,186,0,0,0,0" HREF="ebay-selling/index.html"  ALT="We provides highly professional ebay selling services."  TARGET="_blank"><AREA SHAPE=RECT COORDS="576,160,589,177" HREF="javascript:rotateback();"  ALT=""><AREA SHAPE=RECT COORDS="589,160,600,177" HREF="javascript:pausebanner();" ALT=""><AREA SHAPE=RECT COORDS="600,160,613,177" HREF="javascript:rotateforward();"  ALT=""></MAP>';
var pause = 0;

function rotatenext() {
    if (counter != null) {
        clearTimeout(counter);
    }

    var tbl = document.getElementById("adv");

    if ((position == 0) || (position == 1 || position == 2)) {
        position++;
        tbl.innerHTML = ads[position];
    }
    else {
        position = 0;
        tbl.innerHTML = ads[position];
    }

    counter = setTimeout('rotatenext()', 5000);

    pause = 0;
}

function rotateforward() {
    clearTimeout(counter);

    var tbl = document.getElementById("adv");

    if ((position == 0) || (position == 1 )|| (position == 2)) {
        position++;
        tbl.innerHTML = ads[position];
    }
    else {
        position = 0;
        tbl.innerHTML = ads[position];
    }

    counter = setTimeout('rotatenext()', 5000);

    pause = 0;
}

function rotateback() {
    clearTimeout(counter);

    var tbl = document.getElementById("adv");

    if ((position == 1) || (position == 2) || (position == 3) ) {
        position--;
        tbl.innerHTML = ads[position];
    }
    else {
        position = 2;
        tbl.innerHTML = ads[position];
    }

    counter = setTimeout('rotatenext()', 5000);

    pause = 0;
}

function pausebanner() {
    if (pause == 0) {
        clearTimeout(counter);
        pause = 1;
    }
    else {
        counter = setTimeout('rotatenext()', 1);
        pause = 0;
    }
}
