$(document).ready(function(){
$("table textarea").addClass("mobilesizing");
});
$(function() {
		$("ul.nav-header  li  a").append('<div class="hovering"> </div>');
		// set opacity to nill on page load
		$("ul.nav-header  li  a div").css("opacity","0");
		// on mouse over
		$("ul.nav-header  li a").hover(function () {
			// animate opacity to full
			
			$(this).find(".hovering").stop().animate({
				opacity: 1
			}, 'slow');
		},
		// on mouse out
		function () {
			// animate opacity to nill
			$(this).find(".hovering").stop().animate({
				opacity: 0
			}, 'slow');
		});
	});
$(function() {
		$("a.jump_tag").append('<span class="uparrow"> </span>');
		// set opacity to nill on page load
		$("a.jump_tag span").css("opacity","0");
		// on mouse over
		$("a.jump_tag").hover(function () {
			// animate opacity to full
			
			$(this).find(".uparrow").stop().animate({
				opacity: 1
			}, 'slow');
		},
		// on mouse out
		function () {
			// animate opacity to nill
			$(this).find(".uparrow").stop().animate({
				opacity: 0
			}, 'slow');
		});
	});


$(document).ready(function(){
$('#tidy>p').contents().unwrap();
});
   
	
 $(function(){
        $('.slide-out-div').tabSlideOut({
            tabHandle: '.handle',                     //class of the element that will become your tab
            pathToTabImage: '', //path to the image for the tab //Optionally can be set using css
            imageHeight: '150px',                     //height of tab image           //Optionally can be set using css
            imageWidth: '40px',                       //width of tab image            //Optionally can be set using css
            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: '400px',                          //position from the top/ use if tabLocation is left or right
            leftPos: '20px',                          //position from left/ use if tabLocation is bottom or top
            fixedPosition: true                      //options: true makes it stick(fixed position) on scroll
        });

    });

	
	
	
	
