// JavaScript Document
// Title:	setup for js
// Author:	Trevor Brennan

$(document).ready(function() {
	//jQuery Easing v1.3 - http://gsgd.co.uk/sandbox/jquery/easing/
	$.easing.easeOutQuad = function (x, t, b, c, d) {return c*((t=t/d-1)*t*t*t*t + 1) + b;}
	$("#slideShow").scrollable({circular:true, easing:'easeOutQuad', speed:800}).navigator().autoscroll({interval: 4000});	
	
	getTwitters('tweet', { 
	  id: 'trebbrennan', 
	  count: 2, 
	  enableLinks: true, 
	  ignoreReplies: true, 
	  clearContents: true,
	  template: '%text%'
	});
	
	var hcs = new HalfCourtShot({ jersey: "treb", shots: 5, goal: 'dribbbleShots' });
	
});
