//goes with jquery.tabSlideOut.v1.3.js
$(function(){
	 $('#contenuto').tabSlideOut({
		tabHandle: '.handle',	//class of the element that will become your tab
		pathToTabImage: '../img/tab_news_transp.gif', //path to the image for the tab	//Optionally can be set using css
		imageHeight: '520px',	//height of tab image							//Optionally can be set using css
		imageWidth: '25px',		//width of tab image							//Optionally can be set using css
		tabLocation: 'right',	//side of screen where tab lives, top, right, bottom, or left
		speed: 400,				//speed of animation
		action: 'click',		//options: 'click' or 'hover', action to trigger animation
		topPos: '10px',			//position from the top/ use if tabLocation is left or right
		leftPos: '10px',		//position from left/ use if tabLocation is bottom or top
		fixedPosition: false,	//options: true makes it stick(fixed position) on scroll
		onLoadSlideOut: true
	 });
 });
