// -----------------------------------------------------------------------------

window.google_analytics_uacct = "UA-403159-2";

// -----------------------------------------------------------------------------

jQuery(document).ready(function()
{
  jQuery('a img').parent().css('background', 'none');
  jQuery('#login-button').click(function()
  {
    jQuery('#account-buttons').hide('normal');
    jQuery('#login-form').show('normal');
  });
  jQuery('#register-button').click(function()
  {
    jQuery('#account-buttons').hide('normal');
    jQuery('#register-form').show('normal');
  });
});
