jQuery.noConflict();
jQuery(document).ready(function($){
	$(".tabbertab").addClass("tabbertabhide");
	$(".tabbernav > li").click(function () {
		$(".tabbernav > li").removeClass("tabberactive");
		$(".tabbertab").addClass("tabbertabhide");
				
		$(this).addClass("tabberactive");
		$($(this).children().attr("href")).removeClass("tabbertabhide");
		
		return false;
	});
	
	$(".tabbernav > li > a").focus(function () {
		this.blur();
	});
});