$(document).ready(function() {
	$('*').removeClass('hide');
	$('.slideshow').cycle({
		fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});
});

$(function(){
	$('.tabcontainer').tabSlideOut({
		tabHandle: '.tab_fb',                     //class of the element that will become your tab
		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/ use if tabLocation is left or right
		rightPos: '10px',                          //position from left/ use if tabLocation is bottom or top
		fixedPosition: false                      //options: true makes it stick(fixed position) on scroll
	});

});

$(function(){
	$('.tabcontaineryht').tabSlideOut({
		tabHandle: '.tab_yht',                     //class of the element that will become your tab
		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: '100px',                          //position from the top/ use if tabLocation is left or right
		leftPos: '20px',                          //position from left/ use if tabLocation is bottom or top
		fixedPosition: false                      //options: true makes it stick(fixed position) on scroll
	});

});

