$(document).ready(function(){
	$('#buttons a').hide().fadeIn('slow');
	$('#navigate a').hide().fadeIn('fast');
	
	$('#buttons a').hover(
		function(){
			$(this).animate( { top:"-5px" }, 200 )
		},
		function(){
			$(this).animate( { top:"0px" }, 200 )
		}
	);

//	$('#navigate a').hover(
//		function(){
//			$(this).animate( { top:"-2px" }, 50 )
//		},
//		function(){
//			$(this).animate( { top:"0px" }, 50 )
//		}
//	);

	$('#navigate a').hide().fadeIn('slow');	


	//Flags
//	$('.lang-switch a').hover(
//		function(){
//			$(this).find('img').fadeIn();
//		},
//		function(){
//			$(this).find('img').fadeOut();
//		}
//	)
})
