<!--
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];
	}
}
image = new initArray(
	"produkt-tipps/top-polo-pique-artikel-h800.jpg",
	"produkt-tipps/classic-shirt-artikel-nr-292-thumb.jpg",	
	"produkt-tipps/cap-6111-thumb.jpg"
);
text = new initArray(
	"Ihre Stickerei Top-Polo-Piqué",
	"Ihre Stickerei Classic-Shirt",	
	"Ihre Stickerei Performance-Shirt"
);
link = new initArray(
	"http://www.ihre-stickerei.de/polo-shirts-besticken.htm",
	"http://www.ihre-stickerei.de/t-shirts-besticken.htm",
	"http://www.ihre-stickerei.de/caps-besticken.htm"
);
var currentdate = new Date();
var core = currentdate.getSeconds() % image.length;
var ranimage = image[core];
var rantext  = text[core];
var ranlink  = link[core];

var Quotation=new Array()
Quotation[0] = "Top-Polo-Piqué";
Quotation[1] = "Classic-Shirt";
Quotation[2] = "6 Panel Raver Cap ";
document.write('<a href=\"'+ranlink+'\"><img src=\"'+ranimage+'\" border="0" alt=\"'+rantext+'\"></a>');
document.write("<br>");
document.write(Quotation[core]);


//-->

