$(function(){
	$('.box-1').hover(function(){$(this).stop().animate({backgroundColor:'#87725B'},600)},function(){$(this).stop().animate({backgroundColor:'#2e2e2e'})})
	$('.list-2 li').hover(function(){$(this).stop().animate({backgroundColor:'#87725B'},300)},function(){$(this).stop().animate({backgroundColor:'#2e2e2e'})})
	$('.list-1 li a, .list-3 li a').hover(function(){$(this).stop().animate({color:'#0dc3ff'},300)},function(){$(this).stop().animate({color:'#87725B'})})
	$('.list-4 li a').hover(function(){$(this).stop().animate({color:'#0dc3ff'},300)},function(){$(this).stop().animate({color:'#ababab'})})
	$(".caption").hover(
	  function () {
	   $(this).find('.desription').stop(true, true).slideDown("normal");
	  }, 
	  function () {
		$(this).find('.desription').stop(true, true).slideUp("normal");;
	  }
	);
	$(".caption").hover(
	  function () {
	   $(this).find('.desription-1').stop(true, true).slideDown("normal");
	  }, 
	  function () {
		$(this).find('.desription-1').stop(true, true).slideUp("normal");;
	  }
	);
})
