$(document).ready(function() {
  
  $(".focus:first").focus();

  $("div.notice .close").bind("click", function(){
    $(this).parent("div.notice").slideUp('fast');
  });

  $.doTimeout( 3000, function(){
    $("div.notice.autohide").slideUp('fast');
  });

  $('div.expandable').summary({
    maxHeight: 95,
    className: 'view-more'
  });

});

$(window).bind("load",function() {
  googleAnalytics('UA-461222-14');
});

