function s_blur(obj) {
	//obj.style.color = "silver";
	if (obj.value == "") obj.value = "Поиск...";
}
function s_focus(obj) {
	if (obj.value == "Поиск...") obj.value = "";
	obj.style.color = "black";
}
function s_submit() {
	v = document.getElementById("input_search").value;
	if (v == "Поиск..." || v == "") return false;
	return true;
}

function ajaxPage(url) {
	$('#text').load(url);
}

subscribeFormValidate = function() {
	email = $('#email').attr('value');
	if (!email.match(/^([a-z0-9_\-]+\.)*[a-z0-9_\-]+@([a-z0-9][a-z0-9\-]*[a-z0-9]\.)+[a-z]{2,4}$/i)) {
		alert('Введен неверный адрес электронной почты');
		return false;
	}
	$('#subscribe').submit();
}

function switchId(id) {
	$('#forms > *').hide();
	$('#form_'+id).show();
	$('#switch > *').show();
	$('#a-'+id).hide();
	$('#span-'+id).hide();
}
function switchForm(id) {
	$('#form2').hide();
	$('#form3').hide();
	$('#form'+id).show();
	$("a").removeClass("active-link");
	if (id==2) 	$('#a1').addClass("active-link"); 
	else $('#a2').addClass("active-link"); 
}
