$(document).ready(
	function() {

	// главное меню
	$("#catalog li").hover(
    function() {
			$(this).addClass('hover');
    },
		function() {
			$(this).removeClass('hover');
     }
   );

	if ($.browser.opera) {
		changeImg(0);
	} 
	else {
		opacityImg(0);
	}



});
// *** конец DOM загрузки ***********************************************

function opacityImg(i)
{
	if (i<=3)
	{
		i = i+1;
		$('#img_v_0'+i).animate({opacity: 0}, 5000, function(){opacityImg(i)});
	}
	else {
		$('#img_v_01').animate({opacity: 1}, 5000, function(){opacityImg(0); $('#v-holder img').css('opacity', '1.0');});
	}
}

// Для опера 8,5 которая не понимает прозрачность
function changeImg(i)
{
	setTimeout( function() {

		if (i<=3)
		{
			i = i+1;
			$('#img_v_0'+i).css('display', 'none');
		}
		else {
			$('#v-holder img').css('display', 'block');
			i = 0;
		}
		changeImg(i);
	}, 5000);
}