var Website = {
	
	init: function(){
		this.parallax();
		this.tooltips();
		
		if($('body').is('.home')) {
		  this.animations();
		}
		
	},
	
	parallax: function(){
    $('#parallax div').parallax({
      mouseport: jQuery('body'),
      linkResponse: false
    });
	},
	
	animations: function() {
	  
	  $('.site-name a').delay(500).fadeIn(500);
	  $('#header li:eq(0)').delay(800).animate({ top: 0 }, 200);
	  $('#header li:eq(1)').delay(900).animate({ top: 0 }, 200);
	  $('#header li:eq(2)').delay(1000).animate({ top: 0 }, 200);
	  
	  $('.wrapper').delay(500).fadeIn(600);
	  $('#footer').delay(500).fadeIn(600);
	},
	
	tooltips: function() {
	  $('.people a').qtip({
	    position: { 
	      corner: { 
	        tooltip: 'centerBottom',
	        target: 'center'
	      },
	      adjust: {
	        x: 14
	      }
	    }
	  });
	}
	
}

$(document).ready(function() {
	
	Website.init();
	
});

