$(document).ready(function() {
	$("ul.hovers a").mouseover(function() {
		$(this).addClass("active");
    }).mouseout(function(){
		$(this).removeClass("active");
    });
});

$('#visual div.main').ready(function() {
    var t = setTimeout("swapBannerBgT()",3000);
});

function swapBannerBgT()
{
    try
	{
		swapBannerBg();
	}
	catch(err)
	{
	}
}

function toggleList(o) {

    var dd = document.getElementById('dd_o_' + o);
    var da = document.getElementById('dd_a_' + o);

    if (dd.offsetHeight != 0) {

        dd.style.display = 'none';
        da.style.background = 'url(http://static.mts.ru/upload/images/design/i/dh-arrows.gif) no-repeat -29px 1px';
    }
    else {
        dd.style.display = 'block';
        da.style.background = 'url(http://static.mts.ru/upload/images/design/i/dh-arrows.gif) no-repeat -29px -27px';
    }
} 
