function tqHide(obj){
	obj.className = obj.className.replace(/hover/g,"");
}

function tqShow(obj){
	obj.className += " hover";
}
