// JavaScript Document
function hover ( elm ){
	elm.style.background="#6d84b4";
	elm.style.cursor="pointer";
}

function unhover(elm){
	elm.style.background="#3b5998";
	elm.style.cursor="default";
}
function hover2 ( elm ){
	elm.style.background="#6d84b4";
	elm.style.cursor="pointer";
}

function unhover2(elm){
	elm.style.background="#7696C7";
	elm.style.cursor="default";
}