/*
 * rotator.js
 * Copyright (c) 2010 Fred Rosenbaum, Mistress Design
 * http://www.mistressdesign.com
 * @version 1.0
 */
var rotImgIndex = 0;
var rotGalleryFolder = "gallery/Home/";
var rotImages=[
"mauiweddingphotographers_bride_four_seasons_maui.jpg",
"mauiweddingphotographers_hawaii_bridal_bouquet.jpg",
"mauiweddingphotographers_hawaiian_wedding_couple.jpg",
"mauiweddingphotographers_helicopter_bridal_couple_haleakala.jpg",
"mauiweddingphotographers_kaanapali_sunset_wedding.jpg",
"mauiweddingphotographers_married_on_maui.jpg",
"mauiweddingphotographers_mother_of_bride_holding_rings.jpg",
"mauiweddingphotographers_sunset_hawaii_wedding.jpg",
"mauiweddingphotographers_twilight_grand_wailea_chapel.jpg",
"mauiweddingphotographers_wailea_chapel_wedding.jpg",
"mauiweddingphotographers_wailea_formal_bridal_a.jpg",
"mauiweddingphotographers_wow_a_wailea_wedding.jpg"
];
$(function(){
    $.each(rotImages, function(key, value){
        var img = $('<img />').attr('src', rotGalleryFolder+value);
        img.appendTo('#imgLoad');
    });
    $("#imgRotator").attr("src", rotGalleryFolder+rotImages[rotImgIndex]); // Image rotator initial image
    $("#imgRotator").show();
    setInterval(update, 5000); // Timer to rotate to next image, time 3000 ~= 3 seconds
});
function update(){
    $("#imgRotator").fadeOut("slow", function(){
        rotImgIndex++;
        if (rotImgIndex >= rotImages.length) rotImgIndex = 0;
        $("#imgRotator").attr("src", rotGalleryFolder+rotImages[rotImgIndex]);
        $("#imgRotator").show();
    });
}
