$(document).ready( function() {
	$('div.lf_menu ul').append('<li><a href="sitemap/">Карта сайта</a></li>');
	
	$('input.uss_input_name').attr('value', 'Поиск по сайту');
	$('input.uss_input_name').focus(function () {$(this).attr('value', '')});
	$('input.uss_input_name').blur(function () {
		if ($(this).attr('value')=='') {$(this).attr('value', 'Поиск по сайту');}
	});
	
	$('div.lf_feedback #fioid').attr('value', 'Представьтесь, пожалуйста:');
	$('div.lf_feedback #fioid').focus(function () {$(this).attr('value', '')});
	$('div.lf_feedback #fioid').blur(function () {
		if ($(this).attr('value')=='') {$(this).attr('value', 'Представьтесь, пожалуйста:');}
	});
	
	$('div.lf_feedback #emailid').attr('value', 'Ваш телефон или e-mail:');
	$('div.lf_feedback #emailid').focus(function () {$(this).attr('value', '')});
	$('div.lf_feedback #emailid').blur(function () {
		if ($(this).attr('value')=='') {$(this).attr('value', 'Ваш телефон или e-mail:');}
	});
	
	$('div.lf_feedback #textid').attr('value', 'Сообщение:');
	$('div.lf_feedback #textid').focus(function () {$(this).attr('value', '')});
	$('div.lf_feedback #textid').blur(function () {
		if ($(this).attr('value')=='') {$(this).attr('value', 'Сообщение:');}
	});
});
