$(document).ready(function() {
			$("#menu a").hover(function() {
				$(this).find('img[id!="current_page"]').toggle();
			}, function() {
				$(this).find('img[id!="current_page"]').toggle();
			});

			$("#royal-digital-header").hover(function() {
				$("#royal-digital-dropdown").toggle();
			}, function() {
				$("#royal-digital-dropdown").toggle();
			});

			$("#royal-digital-dropdown").hover(function() {
				$("#royal-digital-dropdown").toggle();
			}, function() {
				$("#royal-digital-dropdown").toggle();
			});

			/*$("#client-login-footer").hover(function(){
		  $("#coming-soon-footer").toggle();
	  },function(){
		  $("#coming-soon-footer").toggle();
	  });*/
		});

function closeSplashDiv() {
			if (document.getElementById('overlay')) {
				document.getElementById('overlay').style.display = 'none';
			}
			if (document.getElementById('splashDivContainer')) {
				document.getElementById('splashDivContainer').style.display = 'none';
			}
		}
