﻿//list.htc
function flmv(me){
	if(me.parentNode.style)
    me.parentNode.style.backgroundColor = "#f5f5ff";
}
function flmo(me){
	if(me.parentNode.style)
	me.parentNode.style.backgroundColor = "";
}
function flc(me){
	if(me.firstChild)
	me.firstChild.click();
}

//top.htc
function ftmv(me){
    me.style.backgroundColor = "#f5f5ff";
}
function ftmo(me){
    me.style.backgroundColor = "";
}

//voteitem
function fvmv(me){
    me.style.backgroundColor = "#f5f5ff";
}
function fvmo(me){
    me.style.backgroundColor = "";
}
function fvc(me){
	if(me.firstChild)
	if(me.firstChild.firstChild)
	if(me.firstChild.firstChild.click)
	me.firstChild.firstChild.click();
}
