$(function() {
	
	$(document).ready(function() {

		setTimer = function(){
			setTimeout(function(){
				showMercury();
			}, 15);
		}
	
		showMercury = function(){
			if ( $('#tabs-cont .mercury').length )
				$('#tabs-cont .mercury').click();
			else
				setTimer();
		}
		
		$('#goToMercury').click(function(){
			showMercury();
		});
		
		if ( document.location.href.indexOf('#mercury') != -1 ){
			setTimer();
		}
		
	});
	
});
