<!--//
var ad;

function timer(){
var how_many_ads = 4;
var now = new Date()
var sec = now.getSeconds()
var ad = sec % how_many_ads;
ad +=1;
return ad;
}

var arr = timer();

function swap(img){

//Beauty
dump1 = new Array(1);
dump1[0]='<td background="images/site/index_center_bkg1.jpg">';
dump1[1]='<table align="center" width="748" cellspacing="0" class="menutbl" cellpadding="0" border="0" background="images/site/bkg_midnav_index1.jpg">';

//Truth
dump2 = new Array(1);
dump2[0]='<td background="images/site/index_center_bkg2.jpg">';
dump2[1]='<table align="center" width="748" cellspacing="0" class="menutbl" cellpadding="0" border="0" background="images/site/bkg_midnav_index2.jpg">';

//Purity
dump3 = new Array(1);
dump3[0]='<td background="images/site/index_center_bkg3.jpg">';
dump3[1]='<table align="center" width="748" cellspacing="0" class="menutbl" cellpadding="0" border="0" background="images/site/bkg_midnav_index3.jpg">';

//Love
dump4 = new Array(1);
dump4[0]='<td background="images/site/index_center_bkg4.jpg">';
dump4[1]='<table align="center" width="748" cellspacing="0" class="menutbl" cellpadding="0" border="0" background="images/site/bkg_midnav_index4.jpg">';


temp = eval('dump' + arr + '[' + img + ']');
if (!temp){
	return;
 }else{
    document.write(temp);
 }
}
//-->
