$(function() {
	$("#search input[type='text'], #subscribe input[type='text']").focus(function() {
		notice = this.getAttribute('notice');

		if($(this).val() == notice) {
			$(this).val('');
		}

	}).blur(function() {
		notice = this.getAttribute('notice');

		if($(this).val() == '') {
			$(this).val(notice);
		}
	});
});


// Меню
$(function() {
	$("#head li").mouseover(function(){
		if(this.className != 'active') {
			this.style.background ='url(/i/bg/li.gif) no-repeat';
		}

	}).mouseout(function(){
		if(this.className != 'active') {
			this.style.background ='none';
		}
	});
});



