$(function() {
	$('header h2').text('');
	
	if($('.index').length )
		$('.index section#top').carouFredSel({
			width: $('body').width(),
			height: 540,
			items: {
				visible: 1,
				minimum: 1,
				start: 0,
				width: $('body').width(),
				height: 540
			},
			scroll: {
				items: 1,
				fx: 'fade',
				duration: 500
			},
			auto: false
		}).css({width: $('body').width()});
	
	if($('.index').length)
		$('.index section#content nav ul').carouFredSel({
			items: {
				visible: 3,
				minimum: 3,
				start: 0
			},
			next: ".arrow-right",
			prev: ".arrow-left",
			scroll: {
				items: 1,
				fx: "scroll",
				duration: 200,
				mousewheel: true
			},
			auto: false
		});

	if(($.browser.msie && $.browser.version < 9))
	{
		$(".caroufredsel_wrapper:first").css({overflow: 'visible'});
		$(".lodz").remove();
	}
	
	var i;
	for (i in document.images) {
		if (document.images[i].src) {
			var imgSrc = document.images[i].src;
			if (imgSrc.substr(imgSrc.length-4) === '.png' || imgSrc.substr(imgSrc.length-4) === '.PNG') {
				document.images[i].style.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled='true',sizingMethod='crop',src='" + imgSrc + "')";
			}
		}
	}
	
	if(!($.browser.msie && $.browser.version <= 8)) {
		$('.index section#content nav ul li').css({opacity: 0.6});
		$('.index section#content nav ul li:eq(1)').css({opacity: 1});
		
		$('.index section#content nav ul').bind('next', function() {
			$('.index section#content nav ul li').css({opacity: 0.6});
			$('.index section#content nav ul li:eq(2)').css({opacity: 1});
		});
		
		$('.index section#content nav ul').bind('prev', function() {
			$('.index section#content nav ul li').css({opacity: 0.6});
			$('.index section#content nav ul li:eq(1)').css({opacity: 1});
		});		
	}
	
	$('section#top div.samochod div.lights').animate({opacity: 0}, 0);
});

function auto() {
	$('section#top div.samochod div.auto')
		.animate({top: 89, right: 22}, 750);
	setTimeout('lightsOn();', 2000);
	if(!($.browser.msie && $.browser.version < 9))
		setTimeout('lightsOff();', 9000);
}

	function lightsOn() {
		$('section#top div.samochod div.lights')
			.animate({opacity: 1}, 150);
	}

	function lightsOff() {
		$('section#top div.samochod div.lights')
			.animate({opacity: 0}, 150, function() {
				$('section#top').trigger('next');
				if(!($.browser.msie && $.browser.version < 9))
					setTimeout('lodka();', 400);
			});
	}

function lodka() {
	$('section#top div.lodz div.lodka').show().css({right: 250, top: 300})
		.animate({top: 0, right: 100}, 3000, 'easeOutExpo')
		.animate({top: 25, right: 108}, 2500)
		.animate({top: 15, right: 105}, 2000)
		.animate({top: 15, right: 105}, 3000, function() {
			$('section#top').trigger('next');
			$('.auto').css({top: 300, right: 0});
			setTimeout('auto();', 400);
		}).fadeOut();

}
	
$(window).load(function() {
	if($('.index').length)
		auto();
});
