$(document).ready(function(){

	// Int add this buttons
	addthis.init();
	
	
		
	// 2 Lists
	
		$("#show_closed").click(
			function(event){
				event.preventDefault();
					//
					$("#show_closed").hide();
					$("#hide_closed").fadeIn('slow');
					
					$("table.my_list").find('tr.hide_item').fadeIn('slow');
					$("table.my_list").find('tr.hide_after_u_id').fadeIn('slow');
			}
		);	
		
		
	$("#hide_closed").click(
			function(event){
				event.preventDefault();
					//
					$("#hide_closed").hide();
					$("#show_closed").fadeIn('slow');
					
					$("table.my_list").find('tr.hide_item').fadeOut('slow');
					$("table.my_list").find('tr.hide_after_u_id').fadeOut('slow');
					
			}
		);
		
	// Hide ;
	$(".hide_after_u_id").fadeOut('slow');
	
	
	// 3. Jobs		
	$("#jobs dt").click(
			function(e){
				// Fix the size of the DL
				fh = $(this).parent().parent().height();
				$(this).parent().parent().css({'height' : fh, 'overflow' : 'hidden'});
				
				// close
				$(this).parent().find('dd').css({'position' : 'absolute', 'left' : '-999em'});
				
				// open
				$(this).next().css({'position' : 'relative', 'left' : 'auto'}).hide().fadeIn('slow');
	
				//
				e.preventDefault();
			}
		);	
	
});
