// Store some random image URLs

var random_flashes = new Array (2);

//random_flashes[0] = 'JobbindAd_1-e';

//random_flashes[1] = 'tickerchart_aljazeera';

//random_flashes[2] = 'tickerchart_mobile_withLink';

//random_flashes[3] = 'yawmak_tc_4';

//random_flashes[2] = '3';

random_flashes[0] = 'tclive';
random_flashes[1] = 'tc-live-metastock'; 
//random_flashes[2] = 'arbah_finance';


// Pick a random image from the list,

// and set the image source to that image

function pick_flash () {      

    return random_flashes[rand(2)-1];
      //return random_flashes[0];

}

function rand (n) {

    return ( Math.floor ( Math.random ( ) * n + 1 ) );

}
