/* ------------------------- Introduction -------------------------
  Copyright (c) 2010 Mark Avery. 
  
  live_site is the url to the live url of the site
  analytics is the google analytics code that is given to you.
  
  acts are called once for all items passed, while scenes and linkers are called for each item
  likers use a regular expression string instead of an item
  
  item : the jQuery selector being passed to the function
  handle : the fuction to be called
  extras : any additional argument to be passed as an array
  
  this.start_up() initiates the controler.. and will be called upon instantiation.. of all classes.
  
*/

function Introduction(element){
  Controler.call(this, element);
  var self = this;
  this.live_site = 'http://www.ravenwoodgroup.com';
  this.analytics = 'UA-8173296-6';
  
  this.linkers = [{
    hookshot : /http\:\/\//,
    handle : External_link
  }]
 
  this.scenes = [];
 
  this.acts = [{
    item : this.container.find('div#content.showcase div.content'),
    handle : Showcase_Gallery,
    extras : [
      this.container.find('div#footer div.thumbs'),
      this.container.find('div#footer div.categories a'),
      this.container.find('div#content.showcase div.callout')
    ]
  }];
  
  return this;
}

$(document).ready(function() {
  new Introduction($('#container')).start_up();
});

