$(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();
});


    
