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

$(document).ready(function(){
	$('.rel').hover(function() { 
		$(this).addClass('plus');
	},
	function() { 
		$(this).removeClass('plus');
	});
});


