var product_index = 1;

var product_spotlight_images = new Array();
var product_spotlight_text = new Array();

//product_spotlight_images.push('<img src="/images/homepage/rotating_images/acrylic_stamps.jpg" width="402" height="271">');
product_spotlight_images.push('<img src="/images/homepage/rotating_images/baby_boy.jpg" width="402" height="271">');
product_spotlight_images.push('<img src="/images/homepage/rotating_images/button_hugs.jpg" width="402" height="271">');
product_spotlight_images.push('<img src="/images/homepage/rotating_images/felt_flowers.jpg" width="402" height="271">');

//product_spotlight_text.push('<span style="color: #694825; font-size: 11px;"><b>ALL NEW!</b></span><br><span style="color: #891E24; font-size: 15px;"><b>Acrylic Stamps</b></span><br><span class="home_copy" style="color: #6E6F71;"><span style="font-size: 11px;">Simple and so cute!</span><br><br>Heart to Heart: It\'s love at first site! Home of: Imaginations!, Dotty\'s Darlin\'s &amp; J.P. Whimsey rubber stamp lines.</span><br><br><a href="/products/group.php?product_group_id=6" class="copyLinkHome">learn more</a>');

product_spotlight_text.push('<span style="color: #694825; font-size: 11px;"><b>ALL NEW!</b></span><br><span style="color: #3F8F96; font-size: 15px;"><b>Baby Boy</b></span><br><span class="home_copy" style="color: #6E6F71;"><span style="font-size: 11px;">Simple and so cute!</span><br><br>Coordinating stickers, jellies, paper and all the accessories you need to give life to your creations.  Bring this little bundle of joy home today!</span><br><br><a href="/products/group.php?product_group_id=29" class="copyLinkHome">learn more</a>');

product_spotlight_text.push('<span style="color: #694825; font-size: 11px;"><b>ALL NEW!</b></span><br><span style="color: #891E24; font-size: 15px;"><b>Button Hugs</b></span><br><span class="home_copy" style="color: #6E6F71;"><span style="font-size: 11px;">Simple and so cute!</span><br><br>Buttons and Button Backs snap together to create endless color combinations for all of your craft projects.</span><br><br><a href="/products/group.php?product_group_id=13" class="copyLinkHome">learn more</a>');

product_spotlight_text.push('<span style="color: #694825; font-size: 11px;"><b>ALL NEW!</b></span><br><span style="color: #891E24; font-size: 15px;"><b>Felt Flowers</b></span><br><span class="home_copy" style="color: #6E6F71;"><span style="font-size: 11px;">Simple and so cute!</span><br><br>O\'Scrap! Felt Flowers will spark your creativity. Available in a variety of shapes, sizes, and colors.  Give your home that warm cozy feeling!</span><br><br><a href="/products/group.php?product_group_id=17" class="copyLinkHome">learn more</a>');



//product_spotlight_text.push('<span style="color: #F37B1F; font-size: 11px;">ALL NEW!</span><br><span style="color: #615048; font-size: 15px;">Button Hugs</span><br><span class="home_copy">Simple and so cute!<br>Buttons and Button Backs snap together to create endless color combinations for all of your craft projects.</span><br><br><a href="/products/" class="copyLink">learn more</a>');


var current_product_index = 0;

var spotlight_text_div = null;
var spotlight_image_div = null;

function rotate_product_spotlight() {
	spotlight_text_div = document.getElementById("spotlight_text");
	spotlight_image_div = document.getElementById("spotlight_image");

	// fade out objects
	Effect.Fade("spotlight_text", {to: 0.01});
	Effect.Fade("spotlight_image", {to: 0.01});

	// replace content
	setTimeout('spotlight_text_div.innerHTML = product_spotlight_text[current_product_index]; spotlight_image_div.innerHTML = product_spotlight_images[current_product_index];', 1000);

	// fade back in objects
	setTimeout('Effect.Appear("spotlight_text");', 1000);
	setTimeout('Effect.Appear("spotlight_image");', 1000);

	setTimeout('rotate_product_spotlight();', 8000);

	current_product_index++;

	if (current_product_index >= product_spotlight_images.length)
		current_product_index = 0;
}

