$(document).ready(function(){

	/*$('#index_button').click(function() {
		
		if ($('#header').hasClass('.header_index2')) {
			$('#header').animate({
			    height: '513px'
			  }, 1500, function() {
			  	$('#header').removeClass('header_index2');
			  });
			$(this).removeClass('up');
		} else {
			$('#header').animate({
			    height: '854px'
			  }, 1500, function() {
			  	$('#header').addClass('header_index2');
			  });
			$(this).addClass('up');
		}
		return false;
	});*/
	
	$('.list_toggle .line_title a').click(function() {
		$(this).parent().toggleClass('open').next('.cont_block').slideToggle(500);
		return false;
	});
	
	$('.combo_menu .block').hover(function(){
		$(this).find('.block_cont').show();
		$(this).addClass('hover');
	},function(){
		$(this).find('.block_cont').hide();
		$(this).removeClass('hover');
	});
	
});

