// JavaScript Document
/*function Show_Song()
{
	document.getElementById('show_top_song').style.visibility = 'visible';
	document.getElementById('show_top_song').style.display = 'block';
	
	document.getElementById('hide_top_song').style.visibility = 'hidden';
	document.getElementById('hide_top_song').style.display = 'none';
	
	document.getElementById('show_id').style.backgroundColor = '#5397C4';
	document.getElementById('hide_id').style.backgroundColor = '#FFFFFF';
}
function Hide_Song()
{
	document.getElementById('hide_top_song').style.visibility = 'visible';
	document.getElementById('hide_top_song').style.display = '';

	document.getElementById('show_top_song').style.visibility = 'hidden';
	document.getElementById('show_top_song').style.display = 'none';
	
	document.getElementById('show_id').style.backgroundColor = '#FFFFFF';
	document.getElementById('hide_id').style.backgroundColor = '#5397C4';
}*/
function Show_Song()
{
	document.getElementById('show_top_song').style.visibility = 'visible';
	document.getElementById('show_top_song').style.display = 'block';
	
	document.getElementById('m_show_id').style.visibility = 'visible';
	document.getElementById('m_show_id').style.display = 'block';		
	
	document.getElementById('m_hide_id').style.visibility = 'hidden';
	document.getElementById('m_hide_id').style.display = 'none';
	
	document.getElementById('hide_top_song').style.visibility = 'hidden';
	document.getElementById('hide_top_song').style.display = 'none';
}
function Hide_Song()
{
	document.getElementById('m_hide_id').style.visibility = 'visible';
	document.getElementById('m_hide_id').style.display = 'block';
	
	document.getElementById('hide_top_song').style.visibility = 'visible';
	document.getElementById('hide_top_song').style.display = 'block';
	
	document.getElementById('show_top_song').style.visibility = 'hidden';
	document.getElementById('show_top_song').style.display = 'none';
	
	document.getElementById('m_show_id').style.visibility = 'hidden';
	document.getElementById('m_show_id').style.display = 'none';	
}

