jQuery.noConflict();

jQuery(document).ready(function(){



/*---логин / pass ---*/
jQuery("form.logoForm > div > span > input").focus(
											
function()
{
	if(jQuery(this).val()=="" && jQuery(this).attr("id")=="login")
	jQuery("#logLab").text("");
												
	if(jQuery(this).val()=="" && jQuery(this).attr("id")=="password")
	jQuery("#passLab").text("");
	
	return true;
});

jQuery("form.logoForm > div > span > input").blur(
function()
{
	if(jQuery(this).val()=="" && jQuery(this).attr("id")=="login")
		jQuery("#logLab").text("Login");
	else
	if(jQuery(this).val()=="" && jQuery(this).attr("id")=="password")
		jQuery("#passLab").text("Password");
	return true;
});


});