google.load("yui", "2.6.0");
      
      //load all the dependent libraries
      function init() {
        var loader = new YAHOO.util.YUILoader({
          require: ["animation"],
          base: "http://ajax.googleapis.com/ajax/libs/yui/2.6.0/build/",
          onSuccess: function() {
            // can set up the link actions after the libraries successfully load
          }
        });
        loader.insert();
      }
      google.setOnLoadCallback(init);
      
      //animates the slider up or down
      function AnimateSlider(el, yPos) {
        var attr = { top: { to: yPos } };
        var sliderAnim = new YAHOO.util.Anim(el, attr, 1, YAHOO.util.Easing.easeOutStrong);
        sliderAnim.animate();
      } 
      function ShowLoginVPS() {
        AnimateSlider('options',-80)
        AnimateSlider('loginvps',0)
      }
      function ShowLoginDS() {
        AnimateSlider('options',-80)
        AnimateSlider('loginds',0)
      }
      function HideLoginVPS() {
        AnimateSlider('loginvps',-80)
        AnimateSlider('options',0)
      }
	  function HideLoginDS() {
        AnimateSlider('loginds',-80)
        AnimateSlider('options',0)
      }
      function ShowContacts() {
        AnimateSlider('options',-80)
        AnimateSlider('contacts',0)
      }
      function HideContacts() {
        AnimateSlider('contacts',-80)
        AnimateSlider('options',0)
      }

		function clearInputDefault (_this, _default)
{
	if (_this.value == _default)
	{
		_this.value = '';
	}
}



function restoreInputDefault (_this, _default)
{
	if (_this.value == '')
	{
		_this.value = _default;
	}
}

		
		
//Contents for menu 1
var solutions=new Array()
solutions[0]='<a href="/solutions.html#managed-cluster-solutions">Managed Cluster Solutions</a>'
solutions[1]='<a href="/solutions.html#managed-storage-solutions">Managed Storage Solutions</a>'
solutions[2]='<a href="/solutions.html#managed-database-solutions">Managed Database Solutions</a>'
solutions[3]='<a href="/solutions.html#load-balancing-solutions">Load Balancing Solutions</a>'
solutions[4]='<a href="/solutions.html#managed-backup">Managed Backup</a>'

var index=new Array()
var contact=new Array()

//Contents for menu 3, and so on
var services=new Array()
services[0]='<a href="/services.html">Services Overview</a>'
services[1]='<a href="/managed-vps-vds.html">Managed VPS/VDS</a>'
services[2]='<a href="/managed-dedicated-servers.html">Managed Dedicated Servers</a>'
services[3]='<a href="/managed-server-co-location.html">Managed Server Co-location</a>'


//Contents for menu 5, and so on
var corporate=new Array()
corporate[0]='<a href="/corporate.html">General Information</a>'
corporate[1]='<a href="/data-center-tour.html">Data Center Tour</a>'
corporate[2]='<a href="/partnership.html">Partnership</a>'

		
var menuwidth='165px' //default menu width
var menubgcolor=' transparent'  //menu bgcolor
var disappeardelay=250  //menu disappear speed onMouseout (in miliseconds)
var hidemenu_onclick="yes" //hide menu when user clicks within menu?

/////No further editting needed

var ie4=document.all
var ns6=document.getElementById&&!document.all

if (ie4||ns6)
document.write('<div id="dropmenudiv" style="visibility:hidden;width:'+menuwidth+';background:'+menubgcolor+'" onMouseover="clearhidemenu()" onMouseout="dynamichide(event)"></div>')

function getposOffset(what, offsettype){
var totaloffset=(offsettype=="left")? what.offsetLeft : what.offsetTop;
var parentEl=what.offsetParent;
while (parentEl!=null){
totaloffset=(offsettype=="left")? totaloffset+parentEl.offsetLeft : totaloffset+parentEl.offsetTop;
parentEl=parentEl.offsetParent;
}
return totaloffset;
}


function showhide(obj, e, visible, hidden, menuwidth){
if (ie4||ns6)
dropmenuobj.style.left=dropmenuobj.style.top="-500px"
if (menuwidth!=""){
dropmenuobj.widthobj=dropmenuobj.style
dropmenuobj.widthobj.width=menuwidth
}
if (e.type=="click" && obj.visibility==hidden || e.type=="mouseover")
obj.visibility=visible
else if (e.type=="click")
obj.visibility=hidden
}

function iecompattest(){
return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body
}

function clearbrowseredge(obj, whichedge){
var edgeoffset=0
if (whichedge=="rightedge"){
var windowedge=ie4 && !window.opera? iecompattest().scrollLeft+iecompattest().clientWidth-15 : window.pageXOffset+window.innerWidth-15
dropmenuobj.contentmeasure=dropmenuobj.offsetWidth
if (windowedge-dropmenuobj.x < dropmenuobj.contentmeasure)
edgeoffset=dropmenuobj.contentmeasure-obj.offsetWidth
}
else{
var topedge=ie4 && !window.opera? iecompattest().scrollTop : window.pageYOffset
var windowedge=ie4 && !window.opera? iecompattest().scrollTop+iecompattest().clientHeight-15 : window.pageYOffset+window.innerHeight-18
dropmenuobj.contentmeasure=dropmenuobj.offsetHeight
if (windowedge-dropmenuobj.y < dropmenuobj.contentmeasure){ //move up?
edgeoffset=dropmenuobj.contentmeasure+obj.offsetHeight
if ((dropmenuobj.y-topedge)<dropmenuobj.contentmeasure) //up no good either?
edgeoffset=dropmenuobj.y+obj.offsetHeight-topedge
}
}
return edgeoffset
}

function populatemenu(what){
if (ie4||ns6)
dropmenuobj.innerHTML=what.join("")
}


function dropdownmenu(obj, e, menucontents, menuwidth){
if (window.event) event.cancelBubble=true
else if (e.stopPropagation) e.stopPropagation()
clearhidemenu()
dropmenuobj=document.getElementById? document.getElementById("dropmenudiv") : dropmenudiv
populatemenu(menucontents)

if (ie4||ns6){
showhide(dropmenuobj.style, e, "visible", "hidden", menuwidth)
dropmenuobj.x=getposOffset(obj, "left")
dropmenuobj.y=getposOffset(obj, "top")
dropmenuobj.style.left=dropmenuobj.x-clearbrowseredge(obj, "rightedge")+"px"
dropmenuobj.style.top=dropmenuobj.y-clearbrowseredge(obj, "bottomedge")+obj.offsetHeight+"px"
}

return clickreturnvalue()
}

function clickreturnvalue(value){
if (ie4||ns6) return false
else return true
}

function contains_ns6(a, b) {
while (b.parentNode)
if ((b = b.parentNode) == a)
return true;
return false;
}

function dynamichide(e){
if (ie4&&!dropmenuobj.contains(e.toElement))
delayhidemenu()
else if (ns6&&e.currentTarget!= e.relatedTarget&& !contains_ns6(e.currentTarget, e.relatedTarget))
delayhidemenu()
}

function hidemenu(e){
if (typeof dropmenuobj!="undefined"){
if (ie4||ns6)
dropmenuobj.style.visibility="hidden"
}
}

function delayhidemenu(){
if (ie4||ns6)
delayhide=setTimeout("hidemenu()",disappeardelay)
}

function clearhidemenu(){
if (typeof delayhide!="undefined")
clearTimeout(delayhide)
}

if (hidemenu_onclick=="yes")
document.onclick=hidemenu


