$(document).ready(function(){
	
$('#tel-site-search').focus(function(){

	if ($(this).val() == 'Поиск')
	$(this).val('');
	
}).blur(function(){
	if ($(this).val() == '')
	$(this).val('Поиск');	
});

$('.tel-site-search-submit').click(function(){

	if ($(this).parent().find('#tel-site-search').val() == 'Поиск')
	$(this).parent().find('#tel-site-search').val('');
	
	$(this).parent()[0].submit();

});

});
