// JavaScript Document

$(document).ready(function () {
  var urlroot = ips.system.urlroot;

  $(".userInfo img").click(function(e){
    e.preventDefault();
    
    var id = $(this).parent().parent().attr("rel");
    $.fancybox({
      'autoScale' : true,
      'autoDimensions' : true,
      'width' : 541, 
      'height' : 487,
      'href' : urlroot + "?module=Users;action=User.publicOpen;id=" + id + ";template=fancyUsers"
    });
  });

 

  $(".tabHead a").bind("click", function(e){
    e.preventDefault();
    var str = "#tab_" + $(this).attr("rel");
    var title = $(this).html();
    $(".tab").hide();
    $(str).find(".testTitle").html(title);
    $(str).show();  
  });

  $(".tab .close").bind("click", function(e){
    e.preventDefault();
    $(this).parent().hide();  
  });

});
