 $(document).ready(function(){
// tab boxes (externalize these eventually
                $('#tabs-container > ul').tabs();
                $('#tabs-horizontal-container > ul').tabs();
// login box at top
                $('a#login-toggle').click(function() {
    			$('#loginbox').toggle(300);
    				return false;
  				});
// zebra strip tables
				$("tr:nth-child(odd)").addClass("odd");			




// end of script               
});

// menu suckerfish
$(document).ready(function(){
	if (document.all) {
		$("#nav-one li").hoverClass ("sfHover");
	}
});
$.fn.hoverClass = function(c) {
	return this.each(function(){
		$(this).hover( 
			function() { $(this).addClass(c);  },
			function() { $(this).removeClass(c); }
		);
	});
};	
		              
//font replace
Cufon.replace('#right-col-inside h1');