$().ready(function(){
	$('#tabs LI').mouseover(function(){
		this.className+=" sfhover";
		//this.style.textAlign="left";
	//	$('#'+this.id+'-sub').style.textAlign="left";
	//	this.style.background="url(../images/tabbgsel.png)";
	});
	$('#tabs LI').mouseout(function(){
		this.className=this.className.replace(new RegExp("sfhover\\b"),"");
		//this.style.background="url(/lib/everythingfurniture/tabbg.png)";
	});
	$("#bookmark").jFav();
});