//*************************************************************************************
// File     : seed_functions.js
// Requires : jquery.js (version 1.3.2+), braingnat.js (version 0.3.2+)
// Author   : Kyle Weems (ksw), Janae Wiedmaier (jlw)
// Origin   : mindfly.com
// Created  : August 2, 2009
// Modified : August 11, 2009
// Purpose  : A collection of scripts specific to the Seed's Bistro Website.
//*************************************************************************************

$(document).ready(function() {
    googleMap();
    homePageSlideshow();
});

function googleMap() {
    BrainGnat.Google.map.load("#googleMap");
    BrainGnat.Google.map.setCenterByAddress("623 Morris St La Conner, WA 98257")
    BrainGnat.Google.map.addMarkerByAddress("623 Morris St La Conner, WA 98257");
};

function homePageSlideshow() {
    var file = "/customControls/imageList/imageList.aspx?dir=/uploads/images/rotatingImages/";
    BrainGnat.slideshow.ajaxLoadCrossfade(file, ".homeSlideshow", "img", 5000, 1000);
}