// JavaScript Document
$(document).ready(function(){
	// email anti-spam
	$('span.snd_eml').each(function(i){
		var c = $(this).text().split(' (0) ').join('@');
		var t = $(this).attr('title');
		if (t)	$(this).replaceWith('<a href="mailto:' + c + '">' + t + '</a>');
		else 	$(this).replaceWith('<a href="mailto:' + c + '">' + c + '</a>');
	});

	$('#search').focus(function(){
		var value = $(this).val() == '' ? 'поиск по сайту' : $(this).val();
		if (value == 'поиск по сайту') value = '';
		$(this).val(value);
	});
	$('#search').blur(function(){
		var value = $(this).val() != null && $(this).val() != '' ? $(this).val() : 'поиск по сайту';
		$(this).val(value);
	});

});