var Login = {
	init : function() {
		jQuery('#email').qtip({
			content: '<strong>Változás!</strong><br /><br />Az azonosító helyett ezentúl a regisztrált e-mail címmel lehet az oldalra belépni!',
			show: 'mouseover',
			hide: 'mouseout',
			position: {
				corner: {
					target: 'topLeft',
					tooltip: 'bottomLeft'
				}
			},
			style: {
				tip: {
					corner: 'bottomLeft',
					size: {
						x: 20,
						y: 8
					}
				}
			}
		});
	}
};

jQuery(function() {
	Login.init();
});
