/* Initialization and Event Script for Homepage Tab Navigation */

$(document).ready(function() {
  $("#homepage-tabs div").hide();
  if($("#currentTab").val() == '')
  {
  $("#homepage-tabs div.tab-teach").show();
  }else{
  $("#homepage-tabs div." + $("#currentTab").val()).show();
  }
    
  $("#homepage-tabs ul.tabs li a").click(function(e){
  $("#currentTab").val($(this).attr('id'));
  $("#homepage-tabs div").hide();
  $("#homepage-tabs div." + $(this).attr('id')).show();
});
});
