$(document).ready(function() {
//Napoveda
$('input[@rel],select[@rel]').each(function() {
	$(this).bind("focus", function() {
	$('.help span').html($(this).attr('rel'));
	$('.help').css('top',	this.offsetParent.offsetTop + 'px');
	});
	//$('form').find('input[@rel]')[0].focus();
});

});