$(document).ready(function (){
	$('.ad-logos li .shadow').css({width: '120px', height:'20px'});
	
	$('.ad-logos li').hover(function (){
		$(this).find('a').stop();
		$(this).find('a').animate({marginTop: 10}, 200);
		
		$(this).find('.shadow').stop();
		$(this).find('.shadow').animate({width: 140+'px', height: 30+'px' , opacity: 0.7, marginLeft: '-70px', bottom: '-9px'}, 200);
	}, function (){
		$(this).find('a').stop();
		$(this).find('a').animate({marginTop: 25}, 200);
		
		$(this).find('.shadow').stop();
		$(this).find('.shadow').animate({width: 120+'px', height: 20+'px', opacity: 1, marginLeft: '-60px', bottom: 0}, 200);
		
	});
});
