$(document).ready(function() {
  /* set up tabs used */
  $tabs = $("#tabs").tabs();
  /* allow select of contact tab from links */
  $('.link-contact').click(function() {
    $tabs.tabs('select', 5); // switch to 5th tab (count from 0)
    return false;
  });

  /* init various tabs sets */
  $("#tabs-prod").tabs();
  $("#tabs-oss").tabs();
  $("#tabs-demo").tabs();

  /* set up fancybox (lighbox) */
  $("a.light-box-group").fancybox();
});

