// Ajax Get Redy -----------------------------------------------------------------

function ajax_get(){

	var xmlHttp;  try    {
	xmlHttp=new XMLHttpRequest();
	}  catch (e)    {
	try      {
	xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
	}    catch (e)      {
	try        {
	xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
	}      catch (e)        {
	alert("Your browser does not support AJAX!");
	return false;
	}
	}
	}  
	
	return xmlHttp;
	
}



/// Change Home Radio ---------------------------

function radio_select(r) {
	
	var xmlHttp=ajax_get();
	
	xmlHttp.onreadystatechange=function()      { 
	  
	if(xmlHttp.readyState<=4 )        {       
	document.getElementById('radio_player').innerHTML="<div align='center'><img style='margin:20px auto;' src='../../images/loading_image1.gif'></div>"; 
	}  
	  
	if(xmlHttp.readyState==4 )        {       
	document.getElementById('radio_player').innerHTML=xmlHttp.responseText; 

	}      }    
	xmlHttp.open("GET","../../radio_load.php?r="+r,true);    xmlHttp.send(null);

}




// on-off radio ----------------------------------------

function radio_hide_on(){
	

	$("#radio_box").animate({left: '-240px'}, 500 );
	$("#radio_buttona").fadeOut(300);
	$("#radio_buttonac").fadeIn(300);
	
}

function radio_hide_off(){
	
	$("#radio_box").animate({left: '0px'}, 500 );
	$("#radio_buttona").fadeIn(300);
	$("#radio_buttonac").fadeOut(300);
	
}
