window.onload = function()
	{
		var lis = document.getElementById('cssdropdown').getElementsByTagName('li');
		for(i = 0; i < lis.length; i++)
		{
			var li = lis[i];
			if (li.className == 'headlink')
			{
				li.onmouseover = function() { this.getElementsByTagName('ul').item(0).style.display = 'block'; }
				li.onmouseout = function() { this.getElementsByTagName('ul').item(0).style.display = 'none'; }
			}
		}
	}


//window.onload = function()
//	{
//document.getElementById('servers').innerHTML = '<img src="../Theme/loading.gif" style="margin-top:35px;margin-left:105px;" />';
//var xmlhttp=false; //Clear our fetching variable
//        try {
//                xmlhttp = new ActiveXObject('Msxml2.XMLHTTP'); //Try the first kind of active x object…
//        } catch (e) {
//                try {
//                        xmlhttp = new
//                        ActiveXObject('Microsoft.XMLHTTP'); //Try the second kind of active x object
//            } catch (E) {
//                xmlhttp = false;
//                        }
//        }
//        if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
//                xmlhttp = new XMLHttpRequest(); //If we were able to get a working active x object, start an XMLHttpRequest
//        }
//		
//myIdentifier=Math.round(Math.random()*10000);
//       var file =  '/FrontEnd/servers.php?rand='; //This is the path to the file we just finished making *
//    xmlhttp.open('GET', file + myIdentifier , true); //Open the file through GET, and add the page we want to retrieve as a GET variable **
//    xmlhttp.onreadystatechange=function() {
//        if (xmlhttp.readyState==4) { //Check if it is ready to recieve data
//                var content = xmlhttp.responseText; //The content data which has been retrieved ***
//                if( content ){ //Make sure there is something in the content variable
//                      document.getElementById('servers').innerHTML = content; //Change the inner content of your div to the newly retrieved content ****
//                } 
//        }
//        }
//        xmlhttp.send(null) //Nullify the XMLHttpRequest
//return;
//	}
	
