$(document).ready(function() { 
	$('ul.menu').superfish({ 
		delay:       600,                            // one second delay on mouseout 
		animation:   {opacity:'show',height:'show'},  // fade-in and slide-down animation 
		speed:       'normal',                          // faster animation speed 
		autoArrows:  false,                           // disable generation of arrow mark-up 
		dropShadows: false                            // disable drop shadows 
	}); 
}); 

$(function () {				
	$('.link-1').not('.contact')
	.hover(function(){
		$(this).stop().animate({paddingRight:'12px'}, {duration:250})
	}, function(){
		$(this).stop().animate({paddingRight:'18px'}, {duration:250})
	});
	
	$('.list-2 a')
	.hover(function(){
		$(this).stop().animate({color:'#fff'}, {duration:250})
	}, function(){
		$(this).stop().animate({color:'#5c5c5c'}, {duration:250})
	});
	
	$('.link-2')
	.hover(function(){
		$(this).stop().animate({color:'#fff', paddingRight:'12px'}, {duration:250})
	}, function(){
		$(this).stop().animate({color:'#717171', paddingRight:'18px'}, {duration:250})
	});
	
	$('.footer-menu a').not('.active').find('span').css({opacity:0});
	$('.footer-menu a').not('.active')
	.hover(function(){
		$(this).find('span').stop().animate({opacity:1}, {duration:250})
	}, function(){
		$(this).find('span').stop().animate({opacity:0}, {duration:250})
	});
	
	$('.footer-text a')
	.hover(function(){
		$(this).stop().animate({color:'#fff'}, {duration:250})
	}, function(){
		$(this).stop().animate({color:'#595959'}, {duration:250})
	});
});
