window.onload = rotate;

var textcycle = new Array( "Soon to be Yours!", "Special.", "Delicate.", "Detailed.", "Unique.", "Colorful.", "Fabulous.");
var thistext = 0;

function rotate() {
	thistext++;
	if (thistext == textcycle.length) {
		thistext = 0;
	}
	document.getElementById("cyclingtext"). innerHTML = textcycle[thistext];
	setTimeout("rotate()", 2.5 * 1000);
}

