$(window).ready(function () {
	$('.splashLng a').mouseenter(function(){
			var bigImg = $(this).find('img').attr('src').replace('.png', '_big.png');
			$('#bigLink').html('<a href='+$(this).attr('href')+'><img src="'+bigImg+'" /></a>');
			
			$('#bigLink').css({'top':$(this).offset().top-260, 'left':$(this).offset().left-203});
			$(this).css('visibility', 'hidden');
	});
	$('#bigLink').mouseleave(function(){
		$(this).empty();
		$('.splashLng a').css('visibility', 'visible');
		
	});
});

