	jQuery(function(){
		$("#login_auth").focus(function(){
			if($(this).val() == 'Ëîãèí')
			{
				$(this).val("");
			}
		});
		$("#passwd_auth").focus(function(){
			if($(this).val() == 'Ïàðîëü')
			{
				$(this).val("");
			}
		});

        $("#form_login").submit(function(){
        	var msg = '';

        	if($("#login_auth").val() == '' || $("#login_auth").val() == 'Ëîãèí')
        	{
        		msg += '— Ëîãèí íå çàïîëíåí\n';
        	}
        	if($("#passwd_auth").val() == '' || $("#passwd_auth").val() == 'Ïàðîëü')
        	{
        		msg += '— Ïàðîëü íå çàïîëíåí\n';
        	}
        	if(msg != '')
        	{
        		alert(msg);
				return false;
        	}

        });
	});


$(function() {
//	$('a[href^=http://]').attr('target', '_blank');
//	$('a[href^=https://]').attr('target', '_blank');
	$('a[href^=/forum/]').attr('target', '_blank');
	createReferences();
});

