// JavaScript Document
var s;
var o = null;
var se = null;
var ind = 1;
var sBox3 = null;
var iBox3 = 100;
var sBox4 = null;
var iBox4 = 100;

function abu(selec){
	document.getElementById('sA').style.color='#CCC';
	document.getElementById('sJ').style.color='#CCC';
}

function hover(s){
	document.getElementById('list-'+s).style.backgroundColor='#EABF80';
	document.getElementById('list-'+s).style.paddingLeft='10px';
	document.getElementById('list-'+s).style.color='#549898';
}
function backto(s){
	document.getElementById('list-'+s).style.backgroundColor='transparent';
	document.getElementById('list-'+s).style.paddingLeft='';
	document.getElementById('list-'+s).style.color='#75B6B9';
}
function clicked(s){
	document.getElementById('list-'+s).style.backgroundColor='#DC9B23';
	document.getElementById('list-'+s).style.paddingLeft='20px';
	document.getElementById('list-'+s).style.color='#FFF';
}
function backclick(s){
	document.getElementById('list-'+s).style.backgroundColor='transparent';
	document.getElementById('list-'+s).style.paddingLeft='';
	document.getElementById('list-'+s).style.color='#75B6B9';
}
function blink(){
	if (ind == 1){
		document.getElementById('searchBox').style.border='#F00 solid 1px';
		ind=0;
		se = setTimeout("blink()", 500);
	} else if (ind == 0){
		document.getElementById('searchBox').style.border='#999 solid 1px';
		ind=1;
		se = setTimeout("blink()", 500);
	}
}
function showLirik(){
	document.getElementById('lirik').style.display='block';
	document.getElementById('lirik').style.top=300+'px';
}
function hideLirik(){
	document.getElementById('lirik').style.display='none';
}
