// JavaScript Document

// DropDownMenu by Miha Hribar
// http://hribar.info
function evaluateEmail(f)
{
	var value = f;
	if (value.length == 0)
	return true;
	var rx = /^[\w-]+(\.[\w-]+)*@[\w-]+(\.[\w-]+)*\.\w{2,8}$/;
	var matches = rx.exec(value);
	return (matches != null);
}
function validate()
{
	if (document.getElementById("name").value=='')
	{
		alert('Name is a required field!');
		document.getElementById("name").focus();
		return false;
	}
	if (document.getElementById("emailid").value=='')
	{
		alert('Email id is a required field!');
		document.getElementById("emailid").focus();
		return false;
	}
	if (evaluateEmail(document.getElementById("emailid").value)==false)
	{
		alert('EmailId should be a valid email id!');
		document.getElementById("emailid").focus();
		return false;
	}

	if (document.getElementById("Address").value=='')
	{
		alert('Address is a required field!');
		document.getElementById("Address").focus();
		return false;
	}
	if (document.getElementById("city").value=='')
	{
		alert('City is a required field!');
		document.getElementById("city").focus();
		return false;
	}
	if (document.getElementById("mobile").value=='')
	{
		alert('Mobile number is a required field!');
		document.getElementById("mobile").focus();
		return false;
	}
	
}
function addLoadEvent(func) {
    var oldonload = window.onload;
    if (typeof window.onload != 'function') {
        window.onload = func;
    } else {
        window.onload = function() {
            oldonload();
            func();
        }
    }
}

function prepareMenu() {
    // first lets make sure the browser understands the DOM methods we will be using
  	if (!document.getElementsByTagName) return false;
  	if (!document.getElementById) return false;
  	
  	// lets make sure the element exists
  	if (!document.getElementById("menu")) return false;
  	var menu = document.getElementById("menu");
  	
  	// for each of the li on the root level check if the element has any children
  	// if so append a function that makes the element appear when hovered over
  	var root_li = menu.getElementsByTagName("li");
  	for (var i = 0; i < root_li.length; i++) {
  	    var li = root_li[i];
  	    // search for children
  	    var child_ul = li.getElementsByTagName("ul");
  	    if (child_ul.length >= 1) {
  	        // we have children - append hover function to the parent
  	        li.onmouseover = function () {
  	            if (!this.getElementsByTagName("ul")) return false;
  	            var ul = this.getElementsByTagName("ul");
  	            ul[0].style.display = "block";
  	            return true;
  	        }
  	        li.onmouseout = function () {
  	            if (!this.getElementsByTagName("ul")) return false;
  	            var ul = this.getElementsByTagName("ul");
  	            ul[0].style.display = "none";
  	            return true;
  	        }
  	    }
  	}
  	
  	return true;
}

addLoadEvent(prepareMenu);
