$(function(){

  // Tabs
  // $('#tabs').tabs({fx: {opacity: 'toggle'}});
  $('#tabs').tabs();

  //hover states on the static widgets
  $('#dialog_link, ul#icons li').hover(
    function() { $(this).addClass('ui-state-hover'); },
    function() { $(this).removeClass('ui-state-hover'); }
  );

  $("a[rel*='popup']").click(function(event){
    window.open($(this).attr('href'),
    'USA+ Members',
    'toolbar=0,scrollbars=1,location=1,statusbar=0,menubar=0,resizable=1,width=970,height=600');
    event.preventDefault();
  });

  $("a[rel*='external']").click(function(){
   this.target = "_blank";
  });


});

