document.observe("dom:loaded", function() {
$$('.header_bg_thd', '.table_footer_bg').each(function(e){
e.down('td').writeAttribute('colspan', e.up('table').down('tbody tr').childElements().size());});

Prototype.Browser.IE6 = Prototype.Browser.IE && parseInt(navigator.userAgent.substring(navigator.userAgent.indexOf("MSIE")+5)) == 6;

if (Prototype.Browser.WebKit)
	$$('caption.maintitle').each(function(e){
	e.setStyle({width: e.getWidth() + 1 + 'px'});
	});
var search_def = 'Что ищем?';
$('main_search').value = search_def;
$('main_search').observe('focus', function (){if (this.getValue() == search_def) this.value = ''});
$('main_search').observe('blur', function (){if (this.getValue() === '') this.value = search_def});

if (Prototype.Browser.IE6){
	$$('#search-box .submit_input').each(function(e){
	var src = e.readAttribute('src');
	src = src.replace(".png", ".gif");
	e.writeAttribute('src', src);
	});
}

});