$(function(){
	/* SLIDE OUT TAB */
	$('.slide-out-tab').css('display', 'block');
	$('.slide-out-tab').tabSlideOut({
		tabHandle: '.handle',                              //class of the element that will be your tab
		pathToTabImage: '/assets/images/tab.png',          //path to the image for the tab *required*
		imageHeight: '160px',                               //height of tab image *required*
		imageWidth: '18px',                               //width of tab image *required*    
		tabLocation: 'right',                               //side of screen where tab lives, top, right, bottom, or left
		speed: 250,                                        //speed of animation
		action: 'click',                                   //options: 'click' or 'hover', action to trigger animation
		topPos: '90px',                                   //position from the BOTTOM (I changed this in the core JS file)
		fixedPosition: true                               //options: true makes it stick(fixed position) on scroll
	});
	/* CLOCK INSIDE TAB */
	var options = {
        timeNotation: '24h',
        am_pm: false,
        fontFamily: 'Lucida Console, Andale Mono, Monaco, monospace',
        fontSize: '10px',
        foreground: 'black',
        background: 'white',
		utc: true,
        utc_offset: -5
      }
      $('.jclock').jclock(options);
	  /* OPEN THESE LINKS IN NEW WINDOW */
	  $("#twitter_feed a[href^='http://']").attr("target","_blank");
});
