﻿

<!--
$(document).ready(function(){
$("#tabberTop li").click(changeTab);
});

function changeTab(){
//alert($(this).attr("id"));
var id = $(this).attr("id");
$("#tabberTop").attr("class", id );
$(".tabberContent").hide();
if(id=="tab1"){
  $("#tabber1").show();
} else if(id=="tab2"){
  $("#tabber2").show();
} else if(id=="tab3"){
  $("#tabber3").show();
}
}
//-->

