﻿ $(document).ready(function() {
 
        LinkHover_Apply();
        
  
		
})
		
function LinkHover_Apply()
{
$('ul.List li')
	.mouseover(function(){
		$(this).stop().animate(
			{backgroundPosition:"(13px -1200px)"}, 
			{duration:500})
		})
	.mouseout(function(){
		$(this).stop().animate(
			{backgroundPosition:"(0px -1200px)"}, 
			{duration:500}
			)
		});
		
	$('.Icon.LargeArrow.Right.Animated').mouseover(function(){
		$(this).stop().animate(
			{backgroundPosition:"(20px -1000px)"}, 
			{duration:500})
		})
	.mouseout(function(){
		$(this).stop().animate(
			{backgroundPosition:"(0px -1000px)"}, 
			{duration:500}
			)
		});
		
	$('.Icon.LargeArrow.Left.Animated').mouseover(function(){
		$(this).stop().animate(
			{backgroundPosition:"(0px -1050px)"}, 
			{duration:500})
		})
	.mouseout(function(){
		$(this).stop().animate(
			{backgroundPosition:"(20px -1050px)"}, 
			{duration:500}
			)
		});
}