var counter = 0;

$(document).ready(function(){
$('a#podvalMail').click(function(event){
event.preventDefault();
$.modal($('#modalLetter'),{opacity:43});
});
if($('span.sales')) {
setInterval("update_link_color()",1500);
}
if($('table.twd')) {
$('table.twd tr:nth-child(even)').addClass('higlight');
}
if($('div.hiding_block')) {
$('a.show_hide').css({display:'inline'});
$('div.hiding_block').css({display:'block'});
$('a.show_hide').click(function(event){
event.preventDefault();
var my_text=$(this).text();
var my_str=my_text.substr(my_text.indexOf(' '));
if(my_text.indexOf('Показать')!=-1) $(this).text('Скрыть' + my_str);
if(my_text.indexOf('Скрыть')!=-1) $(this).text('Показать' + my_str);
var app_v = navigator.appVersion;
if(app_v.indexOf('MSIE 8')!=-1) {
	$(this).parent().nextAll('div.hiding_block:eq(0)').toggle();
}
else {
	$(this).parent().nextAll('div.hiding_block:eq(0)').toggle(150);
}
});
}


//$('.h').show(200);
$('.h').fadeIn(250);
});


