var randomdevs = [];
MAX_DEVS = randomdevs.push(
/* ARRAYS OF THE FORM: [alt,img link, catalog link] */
/* Alt means what's shown if the image is missing it's only text */
/* Keep a comma out of the last one at the end */

/*Add People Below */
["Tinsella", "http://i669.photobucket.com/albums/vv53/FPBundles/FurryHelpersXMass/Tinsellapic.gif", "http://www.imvu.com/shop/product.php?products_id=4552029"],

["Krinx", "http://i669.photobucket.com/albums/vv53/FPBundles/FurryHelpersXMass/pvkrinx2.png", "http://www.imvu.com/shop/product.php?products_id=4546995"],

["Twinkle", "http://i669.photobucket.com/albums/vv53/FPBundles/FurryHelpersXMass/34huf68.png", "http://www.imvu.com/shop/product.php?products_id=4545312"],

["Buttons", "http://i669.photobucket.com/albums/vv53/FPBundles/FurryHelpersXMass/productdisplaycopy-1.png", "http://www.imvu.com/shop/product.php?products_id=4563213"],

["Gust", "http://i669.photobucket.com/albums/vv53/FPBundles/FurryHelpersXMass/metalmouth.png", "http://www.imvu.com/shop/product.php?products_id=4563213"]


/* Do Not Edit After This */
);

/* FUNCTION THAT BUILDS THE HTML FOR EACH ICON */
function kimi_build_html(row) {

	final_str = "<a href='" + row[2] + "' target='_blank'>" + "<img src='" + row[1] + "' border='0' alt=\"" + row[0]  +"\"></a>&nbsp";

	return final_str;
}

function generate_random(max){

	return Math.floor(Math.random()*max);
}

/* FUNCTION THAT REFRESHES ALL DIV CONTENTS */
function update_divs(){
	if (document.getElementById) {
	  ran_num = generate_random(MAX_DEVS);
	  document.getElementById("random_developers").innerHTML = kimi_build_html(randomdevs[ran_num]);

	}
	setTimeout ("update_divs()", 38000);
}

update_divs();