// Set up the image files to be used.

var theImages = new Array() // do not change this

// To add more image files, continue with the

// pattern below, adding to the array.



theImages[0] = 'home_promo_10.swf'

theImages[1] = 'home_promo_11.swf'

theImages[2] = 'home_promo_12.swf'

theImages[3] = 'home_promo_13.swf'

theImages[4] = 'home_promo_14.swf'

theImages[5] = 'home_promo_15.swf'

theImages[6] = 'home_promo_16.swf'

theImages[7] = 'home_promo_17.swf'

theImages[8] = 'home_promo_9.swf'

theImages[9] = 'home_promo_0.swf'



// do not edit anything below this line



var j = 0

var p = theImages.length;

var preBuffer = new Array()

for (i = 0; i < p; i++){

   preBuffer[i] = new Image()

   preBuffer[i].src = theImages[i]

}

var whichImage = Math.round(Math.random()*(p-1));

function showImage(){

//document.write('<a href=\"/store/index.htm\" title=\"Click here to get yours!\"><img src=\"/images/'+theImages[whichImage]+'\" alt=\"Afrodelik is...\" border=\"0\"></a>');

document.write('<object classid=\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\" codebase=\"http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0\" width=\"565\" height=\"638\" id=\"main_page\" align=\"middle\"><param name=\"allowScriptAccess\" value=\"sameDomain\" /><param name=\"movie\" value=\"/images/'+theImages[whichImage]+'\" /><param name=\"menu\" value=\"false\" /><param name=\"quality\" value=\"high\" /><param name=\"wmode\" value=\"transparent\" /><param name=\"bgcolor\" value=\"#ffffff\" /><embed src=\"/images/'+theImages[whichImage]+'\" menu=\"false\" quality=\"high\" wmode=\"transparent\" bgcolor=\"#ffffff\" width=\"565\" height=\"638\" name=\"main_page\" align=\"middle\" allowScriptAccess=\"sameDomain\" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" /></object>');

}

//end images
