﻿//*************************************************************************************
// File     : rose_functions.js
// Requires : jquery.js (version 1.3.2+), braingnat.js (version 0.3.1+)
// Author   : Kyle Weems (ksw)
// Origin   : mindfly.com
// Created  : May 27, 2009
// Modified : May 27, 2009
//*************************************************************************************

$(document).ready(function() {
    checkForGallery();
    loadLightbox();
});


function loadRotator(dir, elem) {
    $.get('/imageList.asp?dir=/images/rotator/' + dir + '/', function(data) {
        var images = data.split("|");
        images.pop();
        BrainGnat.slideshow.fadein(elem, images, 5000, 3000);
    });
}

function checkForGallery() {
    if ($('body').hasClass('home')) {
        loadRotator('home', '.photoWrapper');
    } else if ($('body').hasClass('kitchens')) {
        loadRotator('kitchen', '.photoWrapper');
    }
}

function loadLightbox() {
    if ($('body').hasClass('galleries')) {
        $('.thumbnail a').lightBox({ fixedNavigation: true });
    }
}