﻿$(document).ready(function() {
  $("#tab_swpr a").click(function() {
    $($("#tab_swpr li.sel a").attr("href")).hide();
    $("#tab_swpr li.sel").removeClass("sel");
    $(this).parent("li").addClass("sel");
    $($(this).attr("href")).css("display","block");
    return false;
  });
});