$(function(){
// menu hover 
/*
	$('.sf-menu li').not('.current').hover(function(){
		$(this).find('strong.x1').stop().animate({top:'120px'},700)   
		$(this).find('strong.x2').stop().animate({top:'90px'},900)   
		$(this).find('strong.x3').stop().animate({top:'60px'},1100)   
		$(this).find('strong.x4').stop().animate({top:'30px'},1300)   
		$(this).find('strong.x5').stop().animate({top:'0px'},1500)   
		}, function(){
			$(this).not('.current').find('strong.x5').stop().animate({top:'-150px'},500)  
			$(this).not('.current').find('strong.x4').stop().animate({top:'-150px'},800)  
			$(this).not('.current').find('strong.x3').stop().animate({top:'-150px'},1100)  
			$(this).not('.current').find('strong.x2').stop().animate({top:'-150px'},1400)  
			$(this).not('.current').find('strong.x1').stop().animate({top:'-150px'},1900)  
		})
// list-1 hover
	$('.list-1 li').hover(function(){
	  $(this).stop().animate({backgroundPosition:'10px 5px'},200)       
	 }, function(){
	  $(this).stop().animate({backgroundPosition:'0px 5px'},200)       
	 })
// text hover
	$('.block').hover(function(){
			var th=$(this);					 
			th.find('img').stop().animate({top:'10px'}, 600,'easeOutBounce');
			th.find('div').stop().animate({color:'#000'}, 600);
		}, function(){
			var th=$(this);
			th.find('img').stop().animate({top:'0px'}, 600,'easeOutBounce');
			th.find('div').stop().animate({color:'#fff'}, 600);
	});	
// lightbox image
	$(".lightbox-image").append("<span></span>");
	
	$(".lightbox-image").hover(function(){
		$(this).find("img").stop().animate({opacity:0.5}, "normal")
	}, function(){
		$(this).find("img").stop().animate({opacity:1}, "normal")
	});
*/
// block hover
	$('.block').hover(function(){
			var th=$(this);					 
			th.find('img').stop().animate({top:'10px'}, 600,'easeOutBounce');
			th.find('div').stop().animate({color:'#ffbe0b'}, 600);
		}, function(){
			var th=$(this);
			th.find('img').stop().animate({top:'0px'}, 600,'easeOutBounce');
			th.find('div').stop().animate({color:'#b3b3b3'}, 600);
	});	
// lightbox image
		$(".lightbox-image").append("<span></span>");
		
		$(".lightbox-image").hover(function(){
			$(this).find("img").stop().animate({opacity:0.5}, "normal")
		}, function(){
			$(this).find("img").stop().animate({opacity:1}, "normal")
		});
// box-hover
		$('.box-1 .bgr').css({opacity:'0'});
		$(".box-1").hover(function(){
			$(this).addClass("alt").find('.bgr').stop().animate({opacity:1}, "low");
		}, function(){
			$(this).removeClass("alt").find('.bgr').stop().animate({opacity:0}, "low");
		});
// hover menu	
	$('.sf-menu ul li a').not('.current').hover(function(){
		$(this).stop().animate({left:'15px'},700)   
			}, function(){
			$(this).not('.current').stop().animate({left:'0px'},500)  		
		})
// list hover
	$('.list-services li a').hover(function(){
			th=$(this).find('img');					 
			th.stop().animate({left:'6px'}, 300);
		}, function(){
			th.stop().animate({left:'0px'}, 300);			
	});	
// list-1 hover
	$('.list-2 li').hover(function(){
	  $(this).stop().animate({backgroundPosition:'6px 2px'},200)       
	 }, function(){
	  $(this).stop().animate({backgroundPosition:'0px 2px'},200)       
	 })
// list hover
	$('.list-3 a').hover(function(){
			th=$(this).find('img');					 
			th.stop().animate({left:'7px'}, 300,'easeOutBounce');
		}, function(){
			th.stop().animate({left:'0px'}, 300,'easeOutBounce');			
	});	
});

