function companySitesClick() {
	if ($('sites').value != "") {
		window.open($('sites').value);
		}
}

window.addEvent('domready', function() {
			$each($$('#container-menu li'), function(a) {
						a.addEvents({
									'mouseenter' : function(e) {
										var evt = new Event(e);
										this.addClass('sel');
									},
									'mouseleave' : function(e) {
										var evt = new Event(e);
										this.removeClass('sel');
									}
						});
			});
			$$('#search-container input[type=text]').addEvents({
				'focus' : function() {
					if (this.value.trim() === 'Поиск по сайту') {
						this.value = '';
					}
				},
				'blur' : function() {
					if (!this.value.trim().length) {
						this.value = 'Поиск по сайту';
					}
				}
			});
			$$('.subscription input[type=text]').addEvents({
				'focus' : function() {
					if (this.value.trim() === 'Подписка на новости') {
						this.value = '';
					}
				},
				'blur' : function() {
					if (!this.value.trim().length) {
						this.value = 'Подписка на новости';
					}
				}
			});
});
