/*
 * My Site Functions
 *
 * - toggle search box input
 *
 */

$(document).ready(function() {
  $('input#keywords').toggleVal();
  // setup ul.tabs to work as tabs for each div directly under div.panes 
  // $("ul.tabs").tabs("div.panes > div");
  
  	// open footer links in new window
	$('a.new-window').click(function(){
		window.open(this.href);
		return false;
	});
  
});