$(function(){
	$('.list-1 li').hover(function(){$(this).stop().animate({backgroundColor:'#ab0f8f'},300)},function(){$(this).stop().animate({backgroundColor:'#e1e1e1'})})
	$('.menu li a').hover(function(){$(this).stop().animate({color:'#f8ac05'},300)},function(){$(this).stop().animate({color:'#fff'})})
	$('h5 a').hover(function(){$(this).stop().animate({color:'#2e2d2e'},300)},function(){$(this).stop().animate({color:'#ec0c60'})})
	$('h3 a').hover(function(){$(this).stop().animate({color:'#ec0c60'},300)},function(){$(this).stop().animate({color:'#2e2d2e'})})
	$('.box-2, .box-3').hover(function(){$(this).stop().animate({backgroundColor:'#2e2d2e'},300)},function(){$(this).stop().animate({backgroundColor:'#fcfcfc'})})
	$('.box-4').hover(function(){$(this).stop().animate({backgroundColor:'#2e2d2e'},300)},function(){$(this).stop().animate({backgroundColor:'#fff'})})
	$('.link-1')
		.hover(function(){
			$(this).stop().animate({
				paddingRight:'17px'},500,'easeOutBounce') 
			},
			function(){
				$(this).stop().animate({
				paddingRight:'11px'},500,'easeOutBounce')}
	);
	$('.link-3, .link-2')
		.hover(function(){
			$(this).stop().animate({
				paddingRight:'15px'},500,'easeOutBounce') 
			},
			function(){
				$(this).stop().animate({
				paddingRight:'7px'},500,'easeOutBounce')}
	);
		$('.list-2 li a')
		.hover(function(){
			$(this).stop().animate({
				paddingLeft:'27px'},500,'easeOutBounce') 
			},
			function(){
				$(this).stop().animate({
				paddingLeft:'18px'},500,'easeOutBounce')}
	);
	$('.stroke').css({opacity:'0'});
	$('.paginations li').hover(
		function(){$(this).find('.stroke').stop().animate({opacity:1.0}, "normal")},
		function(){$(this).find('.stroke').stop().animate({opacity:0}, "normal")}
	);
})
