function over(obj){
	obj.style.backgroundColor='#d9d9d9'
}
function out(obj){
	obj.style.backgroundColor=''
}
function down(obj){
	obj.style.backgroundColor='#EBEBEB'
}
function up(obj){
	over(obj);
}