function getObj(id){
	return document.getElementById(id);
}

function opensubmenu(id, h){	
	if(h == "Y"){
		//$("#" + id).hide();
		$("#" + id).slideUp(300).delay(800).fadeIn(400);
	}else{
		if (getObj(id).style.display == "none")
		{
			$("#" + id).slideDown("slow");
		}
		
	}
}

/*function addHoverHide(linkClass, layerId) {
  var t;
  $("#" + linkClass).hover(function() {
    clearTimeout(t)
    $("#" + layerId).show();
  }, function() {
    t = setTimeout(function() {$("#" + layerId).hide()}, 22000);
  });
} 

$(document).ready(function () {
  addHoverHide("introduction", "sub_introduction");
  //addHoverHide("some_other_link", "this_other_layer");

}); */
