/*
 *
 * Language page
 *
 */
$(document).ready(function() {

	// Hover
	$('.country').hover(
		function() {
			position = $(this).position();
			$(this).children('.over').css({'top': position.top, 'left': position.left}).fadeIn(300);
		},
		function() {$(this).children('.over').fadeOut(250);}
	);
	
});
