$(function(){	

	setTimeout(function(){ jQuery('#logo').animate({ top:30 }, 2000, 'easeOutBounce'); }, 1000);
	
	$('#flags a').hover(
		function(){ 
			$(this).stop().animate({ 'margin-top':3 }, 500);
		},
		function(){ 
			$(this).stop().animate({ 'margin-top':0 }, 500); 
		}
	);
	
	$('.cms-object-area-style-pink a.l-x-a-level1').hover(
		function(){ $('.l-x-link_content', this).stop().animate({ 'padding-left':25 }, 500); },
		function(){ $('.l-x-link_content', this).stop().animate({ 'padding-left':20 }, 500); }
	);
	

});

