$(document).ready(function(){
    $('.sidelist').mousemove(function(){
	$(this).find('.i-list').show();
	$(this).find('h3').addClass('hover');
	});
	$('.sidelist').mouseleave(function(){
	$(this).find('.i-list').hide();
	$(this).find('h3').removeClass('hover');
	});
	
	$('.sidelist1').mousemove(function(){
	$(this).find('.i-list1').show();
	$(this).find('h3').addClass('hover');
	});
	$('.sidelist1').mouseleave(function(){
	$(this).find('.i-list1').hide();
	$(this).find('h3').removeClass('hover');
	});
	
	$('.sidelist2').mousemove(function(){
	$(this).find('.i-list2').show();
	$(this).find('h3').addClass('hover');
	});
	$('.sidelist2').mouseleave(function(){
	$(this).find('.i-list2').hide();
	$(this).find('h3').removeClass('hover');
	});
	
	$('.sidelist3').mousemove(function(){
	$(this).find('.i-list3').show();
	$(this).find('h3').addClass('hover');
	});
	$('.sidelist3').mouseleave(function(){
	$(this).find('.i-list3').hide();
	$(this).find('h3').removeClass('hover');
	});
	
	$('.sidelist4').mousemove(function(){
	$(this).find('.i-list4').show();
	$(this).find('h3').addClass('hover');
	});
	$('.sidelist4').mouseleave(function(){
	$(this).find('.i-list4').hide();
	$(this).find('h3').removeClass('hover');
	});
	
	$('.sidelist5').mousemove(function(){
	$(this).find('.i-list5').show();
	$(this).find('h3').addClass('hover');
	});
	$('.sidelist5').mouseleave(function(){
	$(this).find('.i-list5').hide();
	$(this).find('h3').removeClass('hover');
	});
});

//slideUp
