/* ---------------------------------- */

/* TFAL Core */

/*
 * AUTHOR
 * Ian Coyle
 * @link http://www.iancoyle.com
 * 
 * 
 *
 */

jQuery(
  
  function ($) {
  
    
    /* ---------------------------------- */
        
    /* INSTANTIATE BASE */
        
    new org.arthousetexas.Index();
    
    
          
  } 
  
);


var org = 
{
  
  arthousetexas: {
  
    Index: function() {
        
        
        
        
        function on_load(){
        
          $('#wrapper').animate({opacity:1},1600,'easeInOutQuart');
        
        }  
        
        
        
        
        function on_click(e) {
        
          $('form#BuyTicketForm').submit();
          
          e.preventDefault();
        
        }      
        
        
        $(window).bind('load',on_load)
        
        $('a#purchase').bind('click',on_click)
        
        $('a#forward').bind('click',
          function(e) {
            
            $('.stico_default').mouseover();
            
            e.preventDefault();
          
          });
          

       
        
    } //Index
    
    

  } //thinkingforaliving

} //org