var images = ["rotate_tracy.jpg","rotate_belinda.gif","rotate_cristina.gif","rotate_sarah.gif"];

		var alts = new Array(3);
		alts[0] = "Home Accents";//Tracy
		alts[1] = "Home Accents";//Belinda
		alts[2] = "Home Accents";//Cristina
		alts[3] = "Home Accents";//Sarah

		if (yourBro[0] == "ie5")
			var rotate = 4000;
		else
			var rotate = 4000;

		var count = 0;

		//var elementRef = document.getElementById("imgRotate");

		function rotateimg(i) {
			
			if((document.getElementById)&&(document.getElementById('imgRotate')!=null)){
				
					if (yourBro[0] == "ie5") {
						i.filters.item(0).Apply();
					}
					
					i.src = "images/designers/" + images[count];
					i.alt = alts[count];
					if (yourBro[0] == "ie5") {
						i.filters.item(0).Play();
					}
					
					count++;
					if (count == images.length) {
						count = 0;
					}
					
					//schedule the next rotation of the specified image
					setTimeout("rotateimg(document.imgRotate)", rotate);
					
			}
			else{
				//not assigned or not supported
			}
		}
		
/*
		function PopUpShowroom(){
			var winl = (screen.width - 600) / 2;
			var wint = (screen.height - 600) / 2;
			winprops = 'height=600,width=600,top='+wint+',left='+winl+'resizable=0,scrollbars=yes'
			var winPopup = window.open("popupPortrait.htm", "popWin", winprops);
			winPopup.focus();
		}
*/