/**
 *
 * @access public
 * @return void
 **/
function getStations(){
	var ajax = new ajaxRequest("fileadmin/mimi/scripts/getContent.php?content=stations");

	ajax.onSuccess = function (txt, xml){
		if(document.getElementById('stations')) {
			document.getElementById('stations').innerHTML = txt;
		}
	}
	ajax.doRequest();
}
