jQuery(document).ready(function() {    
  openid.init('openid_identifier');  
  //openid.setDemoMode(true); //Stops form submission for client javascript-only test purposes
});

function showOpenId()
{    
    jQuery('#ksp_openid_box').lightbox_me({
      //centered: true
      overlayCSS: {background:'black',opacity:0.7},
      onLoad: function() { 
            jQuery('#ksp_openid_box').find('input[type="text"]:first').focus();
            }        
    });
}

function showLoading()
{	
    jQuery('#ksp_openid_box').trigger('close');      	
	jQuery('#ksp_loading').lightbox_me({
      centered: true,
      overlayCSS: {background:'black',opacity:0.7}
    });	
}

