	
		$(document).ready
		(	
			function()
			{ 
				$('#bottom_list a').live('click', function(){
					
					var id = $(this).attr('id');
					
					$('#content').find('.carousel').each(
						function (){
							$(this).hide();
						}
					);
					
					$('#content').find('#'+id).show();
					
					var head = $(this).find('.head').html();
					var head_href = $(this).attr('href');
					$('#h1_a').html(head);
					$('#h1_a').attr('href', head_href);
					
					var num = 0;
					$('#content').find('#'+id).find('li').each(
						function (){
							num++;
						}
					);
					
					if ( num > 4 )
					{
						$('.carousel_prev').show();
						$('.carousel_next').show();
						if ( !$('#content').find('#'+id).find(".carousel_in").attr('carusel') )
						{
							$('#content').find('#'+id).find(".carousel_in").jCarouselLite({
								btnNext: ".carousel_next",
								btnPrev: ".carousel_prev",
								scroll: 2,
								visible: 4,
								mouseWheel: true
							});
							$('#content').find('#'+id).find(".carousel_in").attr('carusel', true);
						}
					}	
					else					
					{
						$('.carousel_prev').hide();
						$('.carousel_next').hide();					
					}
										
					if ( $('#content').find('#'+id).offset().top < $('html').scrollTop() )
					{
						$('html').scrollTop($('#content').find('#'+id).offset().top);
					}
					
					return false;
				});
			}
		);
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
