/**
 * @author JJohnson
 * @client Bray Law Firm
 * @copyright 2006 E-dreamz
 */

	var tabs = {
		
		init : function(){
			t = document.getElementById("nav");
			return t;
		},
		
		settab : function(offset){
			t=this.init();
			t.style.backgroundPosition = '0 '+ offset;
		},
		
		resettab : function(){
			t = this.init();
			t.style.backgroundPosition = '0  0 ';
			}
		
	}