$.noConflict();
jQuery(document).ready(function($) {
    jQuery('#registration form').hide();
    /*
    jQuery('#registration h3').click(function(){
        jQuery('#registration form').toggle();
    });
    */
    
		jQuery( "#registration span" ).button();
        
		jQuery( "#registration span" ).click(function() { 
		  
		  if( jQuery( "#registration span" ).text() == 'Регистрация' )
          {
            jQuery( "#registration span" ).text('Вход');
            jQuery('#uf_login').hide();
            jQuery('#registration form').show();
          } 
          else 
          {
            jQuery( "#registration span" ).text('Регистрация');
            jQuery('#uf_login').show();
            jQuery('#registration form').hide();
          }
            
            
		  
          
          return;
		});

    
    var options = {
        foreground: 'white',
        background: '#bca24d'
      };
    $('#jclock').jclock(options);

});
