	// This is the Ajax XMLHttpRequest Connection //
	
	var xmlHttp;
	var dropdown_timer = '';
	
	function createXMLHttpRequest() {
	    if (window.ActiveXObject) {
	        xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
	    } 
	    else if (window.XMLHttpRequest) {
	        xmlHttp = new XMLHttpRequest();
	    }
	}
	    
	
	// Tasks //
	
	function dropdown_request(section) {
		
		
		if (dropdown_timer!=''){
			dropdown_stopCount();
		}
		
		//alert(section);
		
		createXMLHttpRequest();
	    xmlHttp.onreadystatechange = dropdown_change;
	    xmlHttp.open("GET", "_functions/dropdown_home.php?section="+section, true);
	    xmlHttp.send(null);
	}
	    
	function dropdown_change() {
	    if(xmlHttp.readyState == 4) {
	        if(xmlHttp.status == 200) {
	            document.getElementById("dropdown_ajax_div").innerHTML = xmlHttp.responseText;
	        }
	    }
	}
	function dropdown_close() {
	    clearTimeout(dropdown_timer);
		dropdown_timer=setTimeout("dropdown_timedCount()",500);
	}
	function dropdown_timedCount(){
		document.getElementById("dropdown_ajax_div").innerHTML = '';
	}
	function dropdown_stopCount()
	{
	clearTimeout(dropdown_timer);
	}