jQuery(document).ready(function () {

	jQuery("#login_mail").focus(function() {
		if (jQuery(this).val() == "Twój e-mail") jQuery(this).val("");		
		return false;
	});

	$("#login_mail").each(function(){
    	this.focus();
	});	
});

function showCity(element){
	jQuery(element).children('p').attr('class', 'img_foot_all');
}

function hideCity(element){
	jQuery(element).children('p').attr('class', 'img_foot');
}