               		// Initialise the effects
                	var containerHeight;           
                	window.onload = function() {
                        ServiceHeight = new fx.Height('entryindia-service-links', {duration: 200});
                        AboutUsHeight = new fx.Height('about-us-links', {duration: 200});
                        AboutUsHeight.toggle();
				        ServiceHeight.toggle();
                   		
              		}

			function hideDiv(divId) {
			var divToBeHidden = document.getElementById(divId);
			divToBeHidden.style.display = "none";
			}
						
			function showDiv(divId) {
			var divToBeShown = document.getElementById(divId);
			divToBeShown.style.display = "block";
			}

