	$(function(){
		$('.slide-out-div').tabSlideOut({
			tabHandle: '.handle',                              //class of the element that will be your tab
			pathToTabImage: 'assets/images/kodintickets.png',          //path to the image for the tab (optionaly can be set using css)
			imageHeight: '195px',                               //height of tab image
			imageWidth: '40px',                               //width of tab image    
			tabLocation: 'left',                               //side of screen where tab lives, top, right, bottom, or left
			speed: 300,                                        //speed of animation
			action: 'click',                                   //options: 'click' or 'hover', action to trigger animation
			topPos: '200px',                                   //position from the top
            leftPos: '20px', 
			fixedPosition: true                               //options: true makes it stick(fixed position) on scroll
		});

		$("#btn_continue").hover(function(){
			$(this).attr("src","assets/images/btn_continue_rollover.png");
		},function(){
			$(this).attr("src","assets/images/btn_continue_link.png");
		});
		
		$("#button").hover(function(){
			$(this).css("color","#999999");
		},function(){
			$(this).css("color","#cccccc");
		});
	});

