/**
 * @author Arkadiusz 'Axi' Biczewski
 * @copyright Copyright (c) 2008, Axi
 * @package rowerowanie2.0
 */


$(document).ready(function(){
	$('#top_login_name,#top_login_password').bind('focus',{focus:true},mod_login);
	$('#top_login_name,#top_login_password').bind('blur',{focus:false},mod_login);
	$('#top_login_name,#top_login_password').bind('change',{focus:false},mod_login);
  
  $('.tooltip').each(function(i){
		this.title=this.title.replace(/\|/,'<br />');
	});

  $('.tooltip').tooltip();
  
});

/**
 * Function to show/hide login tips during user interaction
 */
function mod_login(eventObj){
	if(this.value!='' || eventObj.data.focus){
		if(this.style.backgroundImage!='none' || this.style.backgroundImage!=''){
			this.style.backgroundImage='none';
		}
	} else {
		this.removeAttribute('style');
	}
};