function expand(sec)
{
     thisSec = eval('e' + sec);
     if (thisSec != null){
          if (thisSec.length){
               if (thisSec[0].style.display != 'none'){
                    for (var i=0;i<thisSec.length;i++) {thisSec[i].style.display = 'none'}
               }
               else{
                    for (var i=0;i<thisSec.length;i++) {thisSec[i].style.display = 'inline'}
               }
          }
          else{
                         if (thisSec.style.display != 'none')     {thisSec.style.display = 'none'}
               else{thisSec.style.display = 'inline'}
          }
     }

}



var currentdate = 0;
var core = 0;
function initArray() {
	this.length = initArray.arguments.length;
	for (var i = 0; i < this.length; i++) {
		this[i] = initArray.arguments[i];
	}
}

link = new initArray(
							"http://www.computer.pleasuredome-web.de",
							"http://www.elbtaler.de/"
);

image = new initArray(
							"http://dark-hand.de/zusatz/werbebanner/pleasurdomepc.gif",
							"http://fehnle.net/images/elbtaler_468x60.jpg"
				);

				text = new initArray(
							"computer.pleasuredome-web.de",
							"Elbtaler - Die Regionalwährung"
				);

				var currentdate = new Date();
				var core = currentdate.getSeconds() % image.length;
				var ranlink  = link[core];
				var ranimage = image[core];
				var rantext  = text[core];

				document.write('<a href=\"' +ranlink+ '\" target=\"_blank\"><img src=\"'+ranimage+'\" class=\"reflect rheight30\" border="0" width="468" height="60" alt=\"'+rantext+'\"></a>');