// JavaScript Document
function hover(sender,state) {
	if(state)
		sender.style.backgroundColor = '#6bade9';
	else
		sender.style.backgroundColor = '';
}