function over(obj){
	obj.style.backgroundColor='#1B528C'
	obj.style.color="#ffffff"
}
function out(obj){
	obj.style.backgroundColor=''
	obj.style.color="#ffffff"
}
function down(obj){
	obj.style.backgroundColor=''
}
function up(obj){
	over(obj);
}