jQuery.noConflict();

jQuery(document).ready(function(){

try {
if(navigator.userAgent.indexOf('MSIE'))
document.execCommand('BackgroundImageCache', false, true);
} catch(e) {}

jQuery('#userName').focus(
function()
{
	this.value="";
	return false;
});

jQuery('#userName').blur(
function()
{
	if(this.value=="") this.value="Логин";
	return false;
});

jQuery('#pass').focus(
function()
{
	this.value="";
	return false;
});

jQuery('#pass').blur(
function()
{
	if(this.value=="") this.value="Пароль";
	return false;
});


								});

