
// HEADER > NAVIGATION: Display sub-menu
$(document).ready(function(){
	$('#languages li a').hover(
		function(){
			$(this).css('background-position', '0 -35px');
		},
		function(){
			$(this).css('background-position', '0 0');
		}
	);
});
