//email obfuscation
function m_a (u,t) {
pre = "mail";
if ( t != '' ) {
	url = pre + "to:" + u + "@" + "Wild" + "Thang" + "Festive" + "Apparel" + "." + "com?subject=" + t;
} else {
	url = pre + "to:" + u + "@" + "Wild" + "Thang" + "Festive" + "Apparel" + "." + "com";
}
document.location.href = url;
}


imgAr = new Array();
imgAr.push("http://wildthangfestiveapparel.com/media/Rotate1.jpg"); imgAr.push("http://wildthangfestiveapparel.com/media/Rotate2.jpg"); imgAr.push("http://wildthangfestiveapparel.com/media/Rotate3.jpg"); imgAr.push("http://wildthangfestiveapparel.com/media/Rotate4.jpg");
imgAr.push("http://wildthangfestiveapparel.com/media/Rotate5.jpg");
imgAr.push("http://wildthangfestiveapparel.com/media/Rotate6.jpg")
var k = 0;
var wid12 = 484;
var hig12 = 522;

if (document.images) {
	var rImg = new Array();
	for (var i=0; i<imgAr.length; i++) {
		rImg[i] = new Image(wid12,hig12);
                rImg[i].src = imgAr[i];
	}
}

function rotater() {
//var ssd = imgAr[k];
//document["test"].src = ssd;
document["test"].src = rImg[k].src;

if( k < (imgAr.length-1)) {
 	k= k+1;
} else {
	k = 0;
}

rTimer = setTimeout('rotater()', 4000 );

}

