// Help Popup
$(document).ready(function(){
						  
		$('.leftPan3 p:last-child').css('padding-bottom','0')

		$('.tool').hover(
		function () {
			$(this).children('div.helpPop').fadeIn('fast');
		},
		function () {
			$(this).children('div.helpPop').fadeOut();

		}
	);
});

$(document).ready(function() {
    $('.formPan').click(function () {
		$('#disable').addClass('eclipse');
		$("#disable").height($("#body").height());
    });

    $('#disable').click(function () {
		$('#disable').removeClass('eclipse');
		$("#disable").css('height','0');
    });
});




